Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:53:26
Deutsch
18.Apr 2024

Polynom = x^2-78x+19

0. Sequence

1. Algorithm

2. Mathematical background

3. Correctness of the algorithm

4. Infinity of the sequence

5. Sequence of the polynom with 1

6. Sequence of the polynom (only primes)

7. Distribution of the primes

8. Check for existing Integer Sequences by OEIS

0. Sequence

f(0) = 19 = 19
f(1) = 29 = 29
f(2) = 133 = 7*19
f(3) = 103 = 103
f(4) = 277 = 277
f(5) = 173 = 173
f(6) = 413 = 7*59
f(7) = 239 = 239
f(8) = 541 = 541
f(9) = 301 = 7*43
f(10) = 661 = 661
f(11) = 359 = 359
f(12) = 773 = 773
f(13) = 413 = 7*59
f(14) = 877 = 877
f(15) = 463 = 463
f(16) = 973 = 7*139
f(17) = 509 = 509
f(18) = 1061 = 1061
f(19) = 551 = 19*29
f(20) = 1141 = 7*163
f(21) = 589 = 19*31
f(22) = 1213 = 1213
f(23) = 623 = 7*89
f(24) = 1277 = 1277
f(25) = 653 = 653
f(26) = 1333 = 31*43
f(27) = 679 = 7*97
f(28) = 1381 = 1381
f(29) = 701 = 701
f(30) = 1421 = 7*7*29
f(31) = 719 = 719
f(32) = 1453 = 1453
f(33) = 733 = 733
f(34) = 1477 = 7*211
f(35) = 743 = 743
f(36) = 1493 = 1493
f(37) = 749 = 7*107
f(38) = 1501 = 19*79
f(39) = 751 = 751
f(40) = 1501 = 19*79
f(41) = 749 = 7*107
f(42) = 1493 = 1493
f(43) = 743 = 743
f(44) = 1477 = 7*211
f(45) = 733 = 733
f(46) = 1453 = 1453
f(47) = 719 = 719
f(48) = 1421 = 7*7*29
f(49) = 701 = 701
f(50) = 1381 = 1381
f(51) = 679 = 7*97
f(52) = 1333 = 31*43
f(53) = 653 = 653
f(54) = 1277 = 1277
f(55) = 623 = 7*89
f(56) = 1213 = 1213
f(57) = 589 = 19*31
f(58) = 1141 = 7*163
f(59) = 551 = 19*29
f(60) = 1061 = 1061
f(61) = 509 = 509
f(62) = 973 = 7*139
f(63) = 463 = 463
f(64) = 877 = 877
f(65) = 413 = 7*59
f(66) = 773 = 773
f(67) = 359 = 359
f(68) = 661 = 661
f(69) = 301 = 7*43
f(70) = 541 = 541
f(71) = 239 = 239
f(72) = 413 = 7*59
f(73) = 173 = 173
f(74) = 277 = 277
f(75) = 103 = 103
f(76) = 133 = 7*19
f(77) = 29 = 29
f(78) = 19 = 19
f(79) = 49 = 7*7
f(80) = 179 = 179
f(81) = 131 = 131
f(82) = 347 = 347
f(83) = 217 = 7*31
f(84) = 523 = 523
f(85) = 307 = 307
f(86) = 707 = 7*101
f(87) = 401 = 401
f(88) = 899 = 29*31
f(89) = 499 = 499
f(90) = 1099 = 7*157
f(91) = 601 = 601
f(92) = 1307 = 1307
f(93) = 707 = 7*101
f(94) = 1523 = 1523
f(95) = 817 = 19*43
f(96) = 1747 = 1747
f(97) = 931 = 7*7*19
f(98) = 1979 = 1979
f(99) = 1049 = 1049
f(100) = 2219 = 7*317

1. Algorithm

If you are interested in some better algorithms have a look at quadr_Sieb_x^2+1.php.

2. Mathematical background

Lemma: If p | f(x) then also p | f(x+p) and p | f(-x-b/a) a) p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(x+p) <=> a(x+p)^2 + b(x+p) + c = 0 mod p <=> ax^2 + 2axp + ap^2 + bx + bp + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(x+p) b) if b = 0 mod a p | f(x) <=> ax^2 + bx + c = 0 mod p p | f(-x-b/a) <=> a(-x-b/a)^2 + b(-x-b/a) + c = 0 mod p <=> ax^2 + 2bx + b^2/a - bx - b^2/a + c = 0 mod p <=> ax^2 + bx + c = 0 mod p Thus if p | f(x) then p | f(-x-b/a)

3. Correctness of the algorithm

The proof for this polynom is similar to the proof for the polynom f(x)=x^2-4x+1. a) First terms for the polynom f(x) = x^2-78x+19

f(0)=19
f(1)=29
f(2)=7
f(3)=103
f(4)=277
f(5)=173
f(6)=59
f(7)=239
f(8)=541
f(9)=43
f(10)=661
f(11)=359
f(12)=773
f(13)=1
f(14)=877
f(15)=463
f(16)=139
f(17)=509
f(18)=1061
f(19)=1
f(20)=163
f(21)=31
f(22)=1213
f(23)=89
f(24)=1277
f(25)=653
f(26)=1
f(27)=97
f(28)=1381
f(29)=701
f(30)=1
f(31)=719
f(32)=1453
f(33)=733
f(34)=211
f(35)=743
f(36)=1493
f(37)=107
f(38)=79
f(39)=751
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=179
f(81)=131
f(82)=347
f(83)=1
f(84)=523
f(85)=307
f(86)=101
f(87)=401
f(88)=1
f(89)=499
f(90)=157
f(91)=601
f(92)=1307
f(93)=1
f(94)=1523
f(95)=1
f(96)=1747
f(97)=1
f(98)=1979
f(99)=1049

b) Substitution of the polynom
The polynom f(x)=x^2-78x+19 could be written as f(y)= y^2-1502 with x=y+39

c) Backsubstitution Beside by backsubstitution you get an estimation for the huge of the primes with p | f(x) and p < f(x) f'(y)>(2y-1) with with y=x-39
f'(x)>2x-79 with x > 39

4. Infinity of the sequence

The mathematical proof is analogue to the proof for the polynom f(x)=x^2+1

5. Sequence of the polynom with 1

19, 29, 7, 103, 277, 173, 59, 239, 541, 43, 661, 359, 773, 1, 877, 463, 139, 509, 1061, 1, 163, 31, 1213, 89, 1277, 653, 1, 97, 1381, 701, 1, 719, 1453, 733, 211, 743, 1493, 107, 79, 751, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 179, 131, 347, 1, 523, 307, 101, 401, 1, 499, 157, 601, 1307, 1, 1523, 1, 1747, 1, 1979, 1049, 317, 1171, 2467, 1297, 389, 1427, 1, 223, 3259, 1699, 3539, 263, 1, 1987, 1, 2137, 233, 1, 677, 1, 5059, 373, 5387, 2777, 1, 421, 6067, 3121, 1, 3299, 6779, 1, 1021, 193, 7523, 1, 7907, 4051, 1, 607, 8699, 4451, 1301, 4657, 1, 1, 1, 5081, 1, 757, 349, 5521, 593, 821, 617, 1, 1741, 6211, 12659, 6449, 1877, 6691, 13627, 991, 487, 7187, 14627, 1063, 15139, 7699, 2237, 419, 16187, 433, 2389, 293, 557, 1, 1, 9049, 18379, 1, 18947, 1, 2789, 9907, 20107, 1, 2957, 10499, 1, 1543, 1153, 383, 1, 1, 1, 11731, 1, 12049, 24419, 1, 3581, 12697, 887, 1861, 26387, 431, 27059, 1, 27739, 739, 1, 14387, 29123, 14737, 4261, 15091, 30539, 2207, 31259, 1, 1103, 2311, 761, 16547, 683, 16921, 1801, 17299, 1, 17681, 35747, 1, 36523, 18457, 37307, 2693, 1229, 19249, 5557, 457, 673, 647, 827, 1, 1, 1, 42179, 1, 43019, 1, 43867, 22147, 6389, 1, 45587, 23011, 6637, 1, 47339, 3413, 1663, 24337, 49123, 3541, 2633, 587, 1, 829, 51859, 26161, 7541, 26627, 1733, 1, 54667, 1, 55619, 4007, 1951, 1, 8221, 29017, 1361, 1553, 8501, 1579, 599, 4357, 691, 1069, 62507, 643, 1, 1, 9221, 32531, 65579, 33049, 1, 569, 1, 4871, 3617, 1117, 3673, 5023, 1201, 1231, 1, 36241, 709, 36787, 10589, 37337, 75227, 5413, 787, 38449, 2671, 5573, 883, 2083, 1627, 2113, 1, 947, 11717, 41299, 1, 1, 84347, 42467, 85523, 6151, 2797, 43651, 1, 44249, 641, 44851, 1, 1, 4817, 6581, 1, 46681, 93979, 1, 95219, 1, 13781, 1129, 1237, 49177, 1, 49811, 937, 7207, 1721, 2689, 1, 1, 104123, 52387, 15061, 1, 106739, 53699, 1, 54361, 109387, 1123, 1, 55697, 112067, 8053, 3911, 1, 863, 57731, 6113, 58417, 1, 59107, 118907, 8543, 120299, 1, 929, 1249, 1, 1997, 17789, 62617, 1, 63331, 1, 3371, 128819, 1, 130267, 65497, 839, 9461, 133187, 2309, 19237, 67699, 136139, 769, 19661, 1609, 139123, 1, 140627, 1, 7481, 1, 7561, 72211, 2963, 72977, 4733, 2543, 1, 74521, 1, 1, 151379, 76081, 152947, 1, 154523, 983, 1, 4129, 881, 1, 3251, 80051, 160907, 11551, 162523, 81667, 164147, 11783, 165779, 83299, 23917, 84121, 169067, 84947, 1, 2767, 1, 12373, 9161, 1, 5669, 12613, 177427, 89137, 25589, 1, 857, 90841, 1, 1, 184259, 1889, 185987, 93427, 1433, 1, 189467, 5009, 1, 1, 192979, 96931, 1, 3373, 196523, 1, 6397, 967, 1, 1, 1999, 3271, 29101, 1, 1, 103217, 1559, 1031, 209179, 1, 2371, 105971, 212867, 15271, 214723, 107827, 30941, 108761, 218459, 1, 31477, 110641, 1, 1, 2837, 5923, 226027, 1, 2213, 1, 4691, 1, 7477, 4013, 1, 2729, 1, 16903, 237619, 119299, 239579, 17183, 12713, 121267, 1831, 1, 2531, 2089, 5051, 124249, 249499, 1, 5849, 126257, 4297, 18181, 1, 1, 1187, 1, 259619, 1, 1289, 1, 263723, 18911, 265787, 1499, 1, 19207, 269939, 1, 38861, 136537, 274123, 137587, 39461, 138641, 6473, 2851, 1, 140761, 1, 20261, 284723, 142897, 1, 143971, 289019, 4679, 41597, 5039, 1259, 21031, 9533, 3449, 297707, 3049, 1, 1, 1, 1, 1759, 1933, 43789, 153817, 5233, 22133, 3079, 5381, 313219, 22453, 315467, 2683, 45389, 1217, 1, 1, 2423, 1667, 1, 1, 1, 163987, 329123, 1, 2111, 1, 1, 167449, 336059, 1637, 48341, 169777, 340723, 24421, 1, 9059, 1, 1303, 347779, 174481, 50021, 1811, 352523, 176857, 7243, 1, 1, 1, 1613, 5821, 362107, 25951, 364523, 182867, 1, 184081, 19441, 185299, 53117, 1, 2857, 26821, 8761, 3203, 379187, 1, 381659, 191449, 54877, 1, 6553, 193937, 55589, 10273, 391627, 1, 13591, 197699, 5021, 1, 1, 200227, 57389, 201497, 404267, 1, 1, 1907, 409379, 29333, 411947, 1931, 21817, 4243, 1, 209201, 59957, 210499, 1, 211801, 1, 2069, 427523, 30631, 430147, 1, 1, 1, 435419, 218371, 62581, 1, 440723, 11633, 1, 222361, 14389, 31957, 2753, 1619, 2339, 32341, 1, 7853, 9323, 1, 2927, 230449, 66037, 3929, 24473, 33311, 1, 234547, 16223, 33703, 473219, 1, 1, 238681, 478747, 1, 1, 2713, 3697, 34693, 487099, 7879, 11393, 1847, 492707, 13003, 2441, 1, 1, 249881, 71597, 3181, 1, 1, 1, 254147, 509723, 1, 1949, 1, 73637, 258449, 27281, 1, 3919, 261337, 524123, 1, 1, 2969, 529939, 37957, 17189, 1, 76541, 1, 538723, 270097, 1, 271571, 1, 2053, 9281, 14449, 1879, 1, 19087, 1, 1, 279001, 2341, 280499, 1, 282001, 565507, 1, 568523, 1, 1, 40933, 30241, 288049, 1, 9341, 20023, 3001, 83389, 292627, 586787, 42023, 589859, 295699, 592939, 42463, 596027, 10303, 12227, 1, 602227, 15889, 86477, 15971, 608459, 43573, 611587, 306577, 6907, 44021, 14369, 1, 1, 311299, 7901, 10789, 1, 314467, 630523, 1, 33353, 317651, 33521, 1, 640099, 320851, 3169, 7499, 646523, 324067, 92821, 325681, 1871, 46757, 4721, 328921, 659467, 47221, 1, 17483, 1, 17569, 21589, 335449, 3313, 337091, 675827, 1, 679123, 340387, 682427, 1, 685739, 7993, 1, 11909, 692387, 2129, 5231, 2221, 36793, 50053, 3329, 352049, 705779, 7219, 1823, 355417, 101789, 357107, 16649, 1, 1, 1, 1, 1, 726107, 1, 1, 2749, 5273, 3433, 1783, 3583, 1, 3671, 106181, 372497, 746723, 1, 1, 4759, 753659, 1, 3923, 379441, 1, 4283, 1, 1, 109661, 384691, 26591, 55207, 24989, 388211, 778187, 55711, 8059, 12637, 112181, 393521, 788819, 1, 1, 20899, 795947, 2999, 799523, 400657, 1, 57493, 4663, 404249, 115757, 1, 813907, 407857, 116789, 4603, 821147, 2027, 824779, 413299, 1, 1913, 43793, 416947, 119389, 9739, 27077, 7129, 4153, 1, 846739, 1, 850427, 1, 854123, 61141, 857827, 1, 123077, 22721, 865259, 1, 2887, 435427, 1, 1, 30223, 439171, 880219, 9001, 883979, 1, 4091, 444817, 891523, 1, 1, 1, 1, 1, 47521, 452401, 906707, 64901, 910523, 4517, 130621, 4723, 1, 2063,

6. Sequence of the polynom (only primes)

19, 29, 7, 103, 277, 173, 59, 239, 541, 43, 661, 359, 773, 877, 463, 139, 509, 1061, 163, 31, 1213, 89, 1277, 653, 97, 1381, 701, 719, 1453, 733, 211, 743, 1493, 107, 79, 751, 179, 131, 347, 523, 307, 101, 401, 499, 157, 601, 1307, 1523, 1747, 1979, 1049, 317, 1171, 2467, 1297, 389, 1427, 223, 3259, 1699, 3539, 263, 1987, 2137, 233, 677, 5059, 373, 5387, 2777, 421, 6067, 3121, 3299, 6779, 1021, 193, 7523, 7907, 4051, 607, 8699, 4451, 1301, 4657, 5081, 757, 349, 5521, 593, 821, 617, 1741, 6211, 12659, 6449, 1877, 6691, 13627, 991, 487, 7187, 14627, 1063, 15139, 7699, 2237, 419, 16187, 433, 2389, 293, 557, 9049, 18379, 18947, 2789, 9907, 20107, 2957, 10499, 1543, 1153, 383, 11731, 12049, 24419, 3581, 12697, 887, 1861, 26387, 431, 27059, 27739, 739, 14387, 29123, 14737, 4261, 15091, 30539, 2207, 31259, 1103, 2311, 761, 16547, 683, 16921, 1801, 17299, 17681, 35747, 36523, 18457, 37307, 2693, 1229, 19249, 5557, 457, 673, 647, 827, 42179, 43019, 43867, 22147, 6389, 45587, 23011, 6637, 47339, 3413, 1663, 24337, 49123, 3541, 2633, 587, 829, 51859, 26161, 7541, 26627, 1733, 54667, 55619, 4007, 1951, 8221, 29017, 1361, 1553, 8501, 1579, 599, 4357, 691, 1069, 62507, 643, 9221, 32531, 65579, 33049, 569, 4871, 3617, 1117, 3673, 5023, 1201, 1231, 36241, 709, 36787, 10589, 37337, 75227, 5413, 787, 38449, 2671, 5573, 883, 2083, 1627, 2113, 947, 11717, 41299, 84347, 42467, 85523, 6151, 2797, 43651, 44249, 641, 44851, 4817, 6581, 46681, 93979, 95219, 13781, 1129, 1237, 49177, 49811, 937, 7207, 1721, 2689, 104123, 52387, 15061, 106739, 53699, 54361, 109387, 1123, 55697, 112067, 8053, 3911, 863, 57731, 6113, 58417, 59107, 118907, 8543, 120299, 929, 1249, 1997, 17789, 62617, 63331, 3371, 128819, 130267, 65497, 839, 9461, 133187, 2309, 19237, 67699, 136139, 769, 19661, 1609, 139123, 140627, 7481, 7561, 72211, 2963, 72977, 4733, 2543, 74521, 151379, 76081, 152947, 154523, 983, 4129, 881, 3251, 80051, 160907, 11551, 162523, 81667, 164147, 11783, 165779, 83299, 23917, 84121, 169067, 84947, 2767, 12373, 9161, 5669, 12613, 177427, 89137, 25589, 857, 90841, 184259, 1889, 185987, 93427, 1433, 189467, 5009, 192979, 96931, 3373, 196523, 6397, 967, 1999, 3271, 29101, 103217, 1559, 1031, 209179, 2371, 105971, 212867, 15271, 214723, 107827, 30941, 108761, 218459, 31477, 110641, 2837, 5923, 226027, 2213, 4691, 7477, 4013, 2729, 16903, 237619, 119299, 239579, 17183, 12713, 121267, 1831, 2531, 2089, 5051, 124249, 249499, 5849, 126257, 4297, 18181, 1187, 259619, 1289, 263723, 18911, 265787, 1499, 19207, 269939, 38861, 136537, 274123, 137587, 39461, 138641, 6473, 2851, 140761, 20261, 284723, 142897, 143971, 289019, 4679, 41597, 5039, 1259, 21031, 9533, 3449, 297707, 3049, 1759, 1933, 43789, 153817, 5233, 22133, 3079, 5381, 313219, 22453, 315467, 2683, 45389, 1217, 2423, 1667, 163987, 329123, 2111, 167449, 336059, 1637, 48341, 169777, 340723, 24421, 9059, 1303, 347779, 174481, 50021, 1811, 352523, 176857, 7243, 1613, 5821, 362107, 25951, 364523, 182867, 184081, 19441, 185299, 53117, 2857, 26821, 8761, 3203, 379187, 381659, 191449, 54877, 6553, 193937, 55589, 10273, 391627, 13591, 197699, 5021, 200227, 57389, 201497, 404267, 1907, 409379, 29333, 411947, 1931, 21817, 4243, 209201, 59957, 210499, 211801, 2069, 427523, 30631, 430147, 435419, 218371, 62581, 440723, 11633, 222361, 14389, 31957, 2753, 1619, 2339, 32341, 7853, 9323, 2927, 230449, 66037, 3929, 24473, 33311, 234547, 16223, 33703, 473219, 238681, 478747, 2713, 3697, 34693, 487099, 7879, 11393, 1847, 492707, 13003, 2441, 249881, 71597, 3181, 254147, 509723, 1949, 73637, 258449, 27281, 3919, 261337, 524123, 2969, 529939, 37957, 17189, 76541, 538723, 270097, 271571, 2053, 9281, 14449, 1879, 19087, 279001, 2341, 280499, 282001, 565507, 568523, 40933, 30241, 288049, 9341, 20023, 3001, 83389, 292627, 586787, 42023, 589859, 295699, 592939, 42463, 596027, 10303, 12227, 602227, 15889, 86477, 15971, 608459, 43573, 611587, 306577, 6907, 44021, 14369, 311299, 7901, 10789, 314467, 630523, 33353, 317651, 33521, 640099, 320851, 3169, 7499, 646523, 324067, 92821, 325681, 1871, 46757, 4721, 328921, 659467, 47221, 17483, 17569, 21589, 335449, 3313, 337091, 675827, 679123, 340387, 682427, 685739, 7993, 11909, 692387, 2129, 5231, 2221, 36793, 50053, 3329, 352049, 705779, 7219, 1823, 355417, 101789, 357107, 16649, 726107, 2749, 5273, 3433, 1783, 3583, 3671, 106181, 372497, 746723, 4759, 753659, 3923, 379441, 4283, 109661, 384691, 26591, 55207, 24989, 388211, 778187, 55711, 8059, 12637, 112181, 393521, 788819, 20899, 795947, 2999, 799523, 400657, 57493, 4663, 404249, 115757, 813907, 407857, 116789, 4603, 821147, 2027, 824779, 413299, 1913, 43793, 416947, 119389, 9739, 27077, 7129, 4153, 846739, 850427, 854123, 61141, 857827, 123077, 22721, 865259, 2887, 435427, 30223, 439171, 880219, 9001, 883979, 4091, 444817, 891523, 47521, 452401, 906707, 64901, 910523, 4517, 130621, 4723, 2063,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-78x+19 and
the reducible primes which appear as divisor for the first time
p | x^2-78x+19 and p < x^2-78x+19

To avoid confusion with the number of primes:
I did not count the primes <= A
but I counted the primes appending the x and therefore the x <= A

ABCDEFGHIJK
exponent =log10 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
11011831.1000000.8000001.1000000.0000000.0000000.000000
21004837110.4800000.3700000.4800004.3636364.6250003.666667
31.0007163443720.7160000.3440000.71600014.9166679.29729733.818180
410.0007.3132.4604.8530.7313000.2460000.73130010.2136877.15116313.045699
5100.00072.68318.99353.6900.7268300.1899300.7268309.9388767.72073211.063260
61.000.000721.343154.061567.2820.7213430.1540610.7213439.9245088.11146310.565878
710.000.0007.171.7741.300.3605.871.4140.7171770.1300360.7171779.9422528.44055310.350080
8100.000.00071.399.37611.256.28160.143.0950.7139940.1125630.7139949.9556088.65628110.243375
91.000.000.000711.524.24099.209.253612.314.9870.7115240.0992090.7115249.9654128.81368010.180969
1010.000.000.0007.095.689.525886.948.4866.208.741.0390.7095690.0886950.7095699.9725208.94017910.139782


ABCDEFGHIJK
exponent =log2 (x)<=xnumber of all primesnumber of primes p = f(x) number of primes p | f(x) C/xD/xE/xC(n) / C(n-1)D(n) / D(n-1)E(n) / E(n-1)
123211.5000001.0000000.5000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666672.0000001.000000
389721.1250000.8750000.2500001.8000001.7500002.000000
416161241.0000000.7500000.2500001.7777781.7142862.000000
532282170.8750000.6562500.2187501.7500001.7500001.750000
6643525100.5468750.3906250.1562501.2500001.1904761.428571
71286951180.5390620.3984380.1406251.9714292.0400001.800000
8256163104590.6367190.4062500.2304692.3623192.0392163.277778
95123551941610.6933590.3789060.3144532.1779141.8653852.728814
101.0247343503840.7167970.3417970.3750002.0676061.8041242.385093
112.0481.4906378530.7275390.3110350.4165042.0299731.8200002.221354
124.0962.9881.1341.8540.7294920.2768550.4526372.0053691.7802202.173505
138.1925.9822.0683.9140.7302250.2524410.4777832.0020081.8236332.111111
1416.38411.9993.8018.1980.7323610.2319950.5003662.0058511.8380082.094532
1532.76823.9276.95716.9700.7301940.2123110.5178831.9940831.8303082.070017
1665.53647.69112.93934.7520.7277070.1974330.5302731.9931881.8598532.047849
17131.07295.12624.22970.8970.7257540.1848530.5409011.9946321.8725562.040084
18262.144189.81745.443144.3740.7240940.1733510.5507431.9954271.8755622.036391
19524.288378.83785.210293.6270.7225740.1625250.5600491.9958011.8750962.033794
201.048.576756.310160.910595.4000.7212730.1534560.5678181.9964001.8883932.027743
212.097.1521.509.818304.8771.204.9410.7199370.1453770.5745611.9962951.8947052.023750
224.194.3043.014.171579.3872.434.7840.7186340.1381370.5804981.9963801.9003962.020667
238.388.6086.018.5201.104.0804.914.4400.7174630.1316170.5858471.9967411.9056002.018430
2416.777.21612.019.3532.107.5799.911.7740.7164090.1256210.5907881.9970611.9089012.016867
2533.554.43224.004.0994.033.62519.970.4740.7153780.1202110.5951671.9971211.9138672.014823
2667.108.86447.947.6087.735.42140.212.1870.7144750.1152670.5992081.9974761.9177342.013582
27134.217.72895.785.13114.852.09880.933.0330.7136550.1106570.6029981.9977041.9200122.012649
28268.435.456191.360.12628.565.934162.794.1920.7128720.1064160.6064561.9978061.9233602.011468
29536.870.912382.329.55455.023.056327.306.4980.7121440.1024880.6096561.9979581.9261772.010554
301.073.741.824763.923.489106.137.732657.785.7570.7114590.0988480.6126111.9980761.9289682.009693
312.147.483.6481.526.491.712204.983.0081.321.508.7040.7108280.0954530.6153751.9982261.9312932.009026
324.294.967.2963.050.436.676396.368.6912.654.067.9850.7102350.0922870.6179481.9983321.9336662.008362
338.589.934.5926.096.160.128767.245.7855.328.914.3430.7096860.0893190.6203671.9984551.9356872.007829
3417.179.869.18412.183.393.4571.486.799.47310.696.593.9840.7091670.0865430.6226241.9985361.9378402.007275


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p=f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
122110110
244310121
387430142
41612750174
53221101101155
66425121301177
7128512724720177
825610452521961177
9512194989643127177
101.02435018017086240177
112.048637322315153460177
124.0961.134579555290820177
138.1922.0681.0431.0255311.513177
1416.3843.8011.9041.8979742.803177
1532.7686.9573.5063.4511.7825.151177
1665.53612.9396.5086.4313.3189.597177
17131.07224.22912.21512.0146.20218.003177
18262.14445.44322.89322.55011.54133.878177
19524.28885.21042.89242.31821.58363.603177
201.048.576160.91080.96679.94440.791120.095177
212.097.152304.877153.329151.54877.264227.589177
224.194.304579.387291.072288.315146.620432.743177
238.388.6081.104.080554.077550.003279.320824.736177
2416.777.2162.107.5791.058.1311.049.448533.3641.574.191177
2533.554.4324.033.6252.024.4092.009.2161.020.1243.013.477177
2667.108.8647.735.4213.882.5173.852.9041.955.1975.780.200177
27134.217.72814.852.0987.453.0717.399.0273.750.74111.101.333177
28268.435.45628.565.93414.330.34914.235.5857.211.71721.354.193177
29536.870.91255.023.05627.597.37327.425.68313.883.90341.139.129177
301.073.741.824106.137.73253.225.35952.912.37326.769.98179.367.727177
312.147.483.648204.983.008102.788.086102.194.92251.685.415153.297.569177
324.294.967.296396.368.691198.732.289197.636.40299.904.312296.464.355177
338.589.934.592767.245.785384.645.511382.600.274193.332.733573.913.028177
3417.179.869.1841.486.799.473745.321.739741.477.734374.571.4171.112.228.032177


ABCDEFGHI
exponent =log2 (x) <=xnumber of primes with p|f(x) number of primes with p=f(x) and p%6=1 number of primes with p=f(x) and p%6=5 number of primes with p=f(x) and p%8=1 number of primes with p=f(x) and p%8=3 number of primes with p=f(x) and p%8=5 number of primes with p=f(x) and p%8=7
121100001
241100001
382110101
4164310301
5327522401
66410732602
7128181083654
825659293010102415
9512161818034246439
101.024384186198896214984
112.048853424429195153302203
124.0961.854912942422332640460
138.1923.9141.9201.9948957641.288967
1416.3848.1984.0334.1651.9231.6162.6172.042
1532.76816.9708.4368.5344.0323.4065.2424.290
1665.53634.75217.37717.3758.3097.08910.6158.739
17131.07270.89735.41535.48217.01914.76621.25417.858
18262.144144.37472.02172.35334.59030.59242.70236.490
19524.288293.627146.869146.75870.56763.18185.70174.178
201.048.576595.400297.867297.533143.691129.523172.326149.860
212.097.1521.204.941602.387602.554291.730265.302344.869303.040
224.194.3042.434.7841.218.2331.216.551590.505540.428691.577612.274
238.388.6084.914.4402.457.8402.456.6001.194.8731.098.4201.386.8061.234.341
2416.777.2169.911.7744.958.2194.953.5552.412.9722.231.4422.779.2592.488.101
2533.554.43219.970.4749.990.9779.979.4974.868.3744.522.7965.566.7605.012.544
2667.108.86440.212.18720.115.96820.096.2199.816.4279.152.75411.151.66510.091.341
27134.217.72880.933.03340.483.74740.449.28619.786.01918.510.80522.334.77620.301.433
28268.435.456162.794.19281.430.32481.363.86839.843.22737.393.35144.732.97940.824.635
29536.870.912327.306.498163.712.134163.594.36480.183.38975.481.16789.576.30282.065.640
301.073.741.824657.785.757329.001.454328.784.303161.284.392152.219.652179.377.676164.904.037
312.147.483.6481.321.508.704660.950.644660.558.060324.271.513306.814.926359.181.360331.240.905
324.294.967.2962.654.067.9851.327.374.2521.326.693.733651.686.023618.057.496719.205.093665.119.373
338.589.934.5925.328.914.3432.665.111.0512.663.803.2921.309.348.4141.244.383.9381.439.888.4331.335.293.558
3417.179.869.18410.696.593.9845.349.468.4345.347.125.5502.629.823.3092.504.241.7782.882.598.2172.679.930.680


8. Check for existing Integer Sequences by OEIS

Found in Database : 19, 29, 7, 103, 277, 173, 59, 239, 541, 43, 661, 359, 773, 1, 877, 463, 139, 509, 1061, 1,
Found in Database : 19, 29, 7, 103, 277, 173, 59, 239, 541, 43, 661, 359, 773, 877, 463, 139, 509, 1061, 163, 31, 1213, 89, 1277, 653, 97, 1381, 701, 719, 1453, 733, 211, 743, 1493, 107, 79, 751,
Found in Database : 7, 19, 29, 31, 43, 59, 79, 89, 97, 101, 103, 107, 131, 139,