Inhaltsverzeichnis

Development of
Algorithmic Constructions

12:16:21
Deutsch
20.Apr 2024

Polynom = x^2-72x+47

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) = 47 = 47
f(1) = 3 = 3
f(2) = 93 = 3*31
f(3) = 5 = 5
f(4) = 225 = 3*3*5*5
f(5) = 9 = 3*3
f(6) = 349 = 349
f(7) = 51 = 3*17
f(8) = 465 = 3*5*31
f(9) = 65 = 5*13
f(10) = 573 = 3*191
f(11) = 39 = 3*13
f(12) = 673 = 673
f(13) = 45 = 3*3*5
f(14) = 765 = 3*3*5*17
f(15) = 101 = 101
f(16) = 849 = 3*283
f(17) = 111 = 3*37
f(18) = 925 = 5*5*37
f(19) = 15 = 3*5
f(20) = 993 = 3*331
f(21) = 1 = 1
f(22) = 1053 = 3*3*3*3*13
f(23) = 135 = 3*3*3*5
f(24) = 1105 = 5*13*17
f(25) = 141 = 3*47
f(26) = 1149 = 3*383
f(27) = 73 = 73
f(28) = 1185 = 3*5*79
f(29) = 75 = 3*5*5
f(30) = 1213 = 1213
f(31) = 153 = 3*3*17
f(32) = 1233 = 3*3*137
f(33) = 155 = 5*31
f(34) = 1245 = 3*5*83
f(35) = 39 = 3*13
f(36) = 1249 = 1249
f(37) = 39 = 3*13
f(38) = 1245 = 3*5*83
f(39) = 155 = 5*31
f(40) = 1233 = 3*3*137
f(41) = 153 = 3*3*17
f(42) = 1213 = 1213
f(43) = 75 = 3*5*5
f(44) = 1185 = 3*5*79
f(45) = 73 = 73
f(46) = 1149 = 3*383
f(47) = 141 = 3*47
f(48) = 1105 = 5*13*17
f(49) = 135 = 3*3*3*5
f(50) = 1053 = 3*3*3*3*13
f(51) = 1 = 1
f(52) = 993 = 3*331
f(53) = 15 = 3*5
f(54) = 925 = 5*5*37
f(55) = 111 = 3*37
f(56) = 849 = 3*283
f(57) = 101 = 101
f(58) = 765 = 3*3*5*17
f(59) = 45 = 3*3*5
f(60) = 673 = 673
f(61) = 39 = 3*13
f(62) = 573 = 3*191
f(63) = 65 = 5*13
f(64) = 465 = 3*5*31
f(65) = 51 = 3*17
f(66) = 349 = 349
f(67) = 9 = 3*3
f(68) = 225 = 3*3*5*5
f(69) = 5 = 5
f(70) = 93 = 3*31
f(71) = 3 = 3
f(72) = 47 = 47
f(73) = 15 = 3*5
f(74) = 195 = 3*5*13
f(75) = 17 = 17
f(76) = 351 = 3*3*3*13
f(77) = 27 = 3*3*3
f(78) = 515 = 5*103
f(79) = 75 = 3*5*5
f(80) = 687 = 3*229
f(81) = 97 = 97
f(82) = 867 = 3*17*17
f(83) = 15 = 3*5
f(84) = 1055 = 5*211
f(85) = 9 = 3*3
f(86) = 1251 = 3*3*139
f(87) = 169 = 13*13
f(88) = 1455 = 3*5*97
f(89) = 195 = 3*5*13
f(90) = 1667 = 1667
f(91) = 111 = 3*37
f(92) = 1887 = 3*17*37
f(93) = 125 = 5*5*5
f(94) = 2115 = 3*3*5*47
f(95) = 279 = 3*3*31
f(96) = 2351 = 2351
f(97) = 309 = 3*103
f(98) = 2595 = 3*5*173
f(99) = 85 = 5*17
f(100) = 2847 = 3*13*73

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-72x+47

f(0)=47
f(1)=3
f(2)=31
f(3)=5
f(4)=1
f(5)=1
f(6)=349
f(7)=17
f(8)=1
f(9)=13
f(10)=191
f(11)=1
f(12)=673
f(13)=1
f(14)=1
f(15)=101
f(16)=283
f(17)=37
f(18)=1
f(19)=1
f(20)=331
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=383
f(27)=73
f(28)=79
f(29)=1
f(30)=1213
f(31)=1
f(32)=137
f(33)=1
f(34)=83
f(35)=1
f(36)=1249
f(37)=1
f(38)=1
f(39)=1
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)=103
f(79)=1
f(80)=229
f(81)=97
f(82)=1
f(83)=1
f(84)=211
f(85)=1
f(86)=139
f(87)=1
f(88)=1
f(89)=1
f(90)=1667
f(91)=1
f(92)=1
f(93)=1
f(94)=1
f(95)=1
f(96)=2351
f(97)=1
f(98)=173
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-72x+47 could be written as f(y)= y^2-1249 with x=y+36

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-36
f'(x)>2x-73 with x > 35

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

47, 3, 31, 5, 1, 1, 349, 17, 1, 13, 191, 1, 673, 1, 1, 101, 283, 37, 1, 1, 331, 1, 1, 1, 1, 1, 383, 73, 79, 1, 1213, 1, 137, 1, 83, 1, 1249, 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, 1, 103, 1, 229, 97, 1, 1, 211, 1, 139, 1, 1, 1, 1667, 1, 1, 1, 1, 1, 2351, 1, 173, 1, 1, 1, 239, 1, 1, 439, 1217, 1, 787, 1, 1409, 547, 503, 1, 967, 1, 1, 1, 1, 1, 5807, 1, 683, 1, 433, 1, 1, 293, 1, 1, 281, 1, 257, 1, 557, 1069, 2917, 373, 1831, 1, 1063, 1, 3329, 1, 2083, 443, 3617, 1, 251, 1, 691, 499, 313, 311, 1, 269, 13151, 1, 1, 347, 277, 599, 14627, 1, 1009, 1, 1, 1, 647, 1, 5569, 1061, 5749, 1, 3559, 1, 2039, 1, 1, 1, 1499, 1, 6689, 509, 1, 1, 1, 449, 1, 1, 7489, 1, 23087, 1, 1, 751, 8117, 1, 4999, 1, 1, 1, 1, 1, 1, 569, 709, 3499, 1889, 1, 29027, 1, 367, 1, 2029, 1283, 31151, 1, 1, 1, 3623, 1, 33347, 1, 2273, 1, 11617, 1, 419, 1, 1, 4597, 953, 1, 7591, 1, 12917, 2447, 1, 1, 1091, 1699, 13729, 1, 2801, 1, 587, 601, 971, 1103, 479, 937, 2671, 1, 617, 5839, 1, 661, 739, 1, 1, 1543, 977, 1, 1, 1, 1913, 3257, 701, 1, 53507, 1, 18149, 1373, 1231, 1, 1523, 1, 3821, 1, 19429, 1, 1, 1, 1, 3797, 1201, 1, 12451, 523, 21089, 1993, 2381, 1, 13063, 1, 1301, 643, 4493, 1, 68447, 1, 7723, 1, 941, 2963, 1, 1, 1, 1, 631, 1033, 2417, 1, 1, 4787, 25717, 1619, 1, 1, 1, 769, 26849, 1, 16339, 857, 27617, 10429, 1867, 1, 5011, 1787, 28789, 1087, 1, 3673, 6827, 1, 1999, 1, 30389, 1, 92387, 1, 1, 11779, 1171, 1, 19219, 1, 877, 1, 32869, 827, 1, 1, 11239, 3181, 6829, 859, 1, 4349, 2693, 1321, 1, 743, 1297, 4513, 1453, 2741, 1, 1, 1151, 1, 1, 1093, 811, 4793, 23143, 1, 1259, 1, 13163, 1, 23971, 5023, 3109, 1, 1, 1, 124067, 1733, 1, 1, 8461, 2659, 128351, 2689, 1, 1, 4861, 1, 132707, 1, 1789, 1, 1, 5683, 27427, 1, 1, 1, 3593, 1, 2179, 1, 47717, 17989, 1, 1, 1, 1531, 2897, 1, 1, 1, 1, 1, 1129, 1, 51329, 6449, 9151, 1303, 10477, 1, 1, 1, 2467, 1, 4153, 20347, 1759, 1, 1, 1153, 18539, 20959, 1, 1, 1, 1, 57269, 1, 1, 1, 10303, 7333, 11789, 2221, 59509, 1, 4871, 1, 1, 1, 1, 1, 1483, 1, 1327, 23497, 20983, 1, 38119, 3989, 1, 929, 12941, 1, 195887, 911, 7321, 1, 13297, 2087, 201251, 8423, 13537, 5099, 1, 1429, 1223, 1, 13901, 1, 70117, 8803, 1, 1, 1399, 3359, 1, 1, 1, 1, 1, 1, 1, 1, 1, 9349, 75109, 5657, 15149, 2377, 17627, 1, 1, 5801, 1, 9749, 234947, 983, 1, 14867, 26539, 3331, 48163, 1, 80929, 1, 1, 1, 2903, 1, 1, 31219, 1, 1049, 252767, 1, 1, 1279, 1, 3581, 1, 2707, 17393, 1637, 87649, 1, 265007, 1, 1187, 1289, 1229, 1, 3191, 2269, 2939, 34297, 1, 1, 1181, 1451, 1, 35089, 1, 2357, 21839, 1979, 1, 1, 19213, 1, 290351, 12143, 19501, 1, 1, 1, 1, 1, 19937, 2207, 100417, 6299, 1, 1, 11321, 1237, 6037, 1, 1, 1621, 8009, 1, 6991, 1, 316847, 13249, 6257, 4003, 1, 6719, 323651, 1, 7243, 1, 2957, 1, 3209, 1, 22189, 1, 12413, 1, 13499, 1, 8713, 1, 1, 2861, 68899, 4801, 2267, 2719, 1, 1, 351587, 14699, 117989, 1, 7919, 1, 1, 7499, 24077, 9059, 121189, 15199, 2633, 1, 2729, 11551, 1, 1, 5743, 3121, 1, 23561, 42023, 1, 15227, 15913, 127717, 48049, 1, 1, 1, 1, 43403, 1, 26209, 16433, 2287, 8269, 5309, 4993, 1, 1861, 31019, 3371, 2081, 12721, 1723, 1, 82183, 1, 45943, 1, 1, 1, 1, 1, 140417, 1, 9419, 1, 13757, 1, 1, 1, 1693, 18043, 4217, 2017, 1, 5479, 11273, 9187, 1, 3697, 1, 1, 49739, 1559, 90067, 1, 151009, 1, 151909, 1, 1, 1, 51239, 1, 1, 3877, 12611, 1, 1549, 1471, 1, 1, 36527, 19843, 1873, 1, 3407, 10037, 483167, 1, 10799, 60919, 162917, 1571, 5783, 1, 164789, 15493, 55243, 1, 100003, 1, 5407, 31517, 33713, 2113, 39119, 1, 1, 12821, 6857, 1, 517151, 1, 1, 13037, 1, 7283, 30931, 1, 1, 2549, 177217, 1, 21383, 1489, 59723, 16843, 10597, 1, 1, 1, 14009, 1, 1, 1, 1, 1, 185089, 1, 37217, 1, 561251, 1, 12539, 1, 1, 1823, 1, 1, 1, 1, 3767, 4013, 115879, 1, 194149, 72997, 15013, 1, 1811, 1, 1, 74149, 1, 4969, 597827, 12487, 1, 1, 1, 1, 607151, 1951, 1, 1, 1, 3203, 616547, 1, 1, 77659, 1, 13009, 9631, 1, 1, 2131, 1, 1, 1609, 6637, 212917, 20011, 42797, 1, 37951, 1, 72043, 1, 43441, 1, 13933, 1, 1, 16493, 73483, 1, 2137, 1, 1, 83689, 17209, 1, 134887, 1, 2789, 42461, 1657, 5689, 1, 1, 229217, 1, 1, 1, 22397, 1, 232549, 17483, 2749, 14639, 22721, 4903, 15727, 3547, 18233, 1747, 54959, 1, 47857, 11243, 26713, 3347, 144931, 6053, 242689, 2683, 243829, 1, 146983, 1, 82039, 1, 2909, 1, 745247, 1, 2423, 1, 3343, 1, 1, 1, 1, 9511, 254209, 31849, 766127, 1, 5701, 1, 257717, 1, 1, 1, 1871, 1, 87083, 1, 1, 1, 1, 99079, 1, 1, 797987, 2777, 1, 5021, 4129, 33623, 808751, 33773, 1, 10177, 1, 1, 1, 1, 54881, 7933, 1, 1, 166099, 1, 92683, 1, 279269, 6997, 1, 17569, 281717, 52937, 1, 1, 65579, 1, 1, 1, 57329, 1, 1, 4007, 1, 1, 290369, 1, 874847, 1, 58573, 110059, 1, 12281, 177223, 1, 8017, 6967, 297889, 1, 13807, 12491, 7703, 1, 60337, 3779, 2099, 1, 3851, 1, 1, 1, 4019, 1, 61613, 1,

6. Sequence of the polynom (only primes)

47, 3, 31, 5, 349, 17, 13, 191, 673, 101, 283, 37, 331, 383, 73, 79, 1213, 137, 83, 1249, 103, 229, 97, 211, 139, 1667, 2351, 173, 239, 439, 1217, 787, 1409, 547, 503, 967, 5807, 683, 433, 293, 281, 257, 557, 1069, 2917, 373, 1831, 1063, 3329, 2083, 443, 3617, 251, 691, 499, 313, 311, 269, 13151, 347, 277, 599, 14627, 1009, 647, 5569, 1061, 5749, 3559, 2039, 1499, 6689, 509, 449, 7489, 23087, 751, 8117, 4999, 569, 709, 3499, 1889, 29027, 367, 2029, 1283, 31151, 3623, 33347, 2273, 11617, 419, 4597, 953, 7591, 12917, 2447, 1091, 1699, 13729, 2801, 587, 601, 971, 1103, 479, 937, 2671, 617, 5839, 661, 739, 1543, 977, 1913, 3257, 701, 53507, 18149, 1373, 1231, 1523, 3821, 19429, 3797, 1201, 12451, 523, 21089, 1993, 2381, 13063, 1301, 643, 4493, 68447, 7723, 941, 2963, 631, 1033, 2417, 4787, 25717, 1619, 769, 26849, 16339, 857, 27617, 10429, 1867, 5011, 1787, 28789, 1087, 3673, 6827, 1999, 30389, 92387, 11779, 1171, 19219, 877, 32869, 827, 11239, 3181, 6829, 859, 4349, 2693, 1321, 743, 1297, 4513, 1453, 2741, 1151, 1093, 811, 4793, 23143, 1259, 13163, 23971, 5023, 3109, 124067, 1733, 8461, 2659, 128351, 2689, 4861, 132707, 1789, 5683, 27427, 3593, 2179, 47717, 17989, 1531, 2897, 1129, 51329, 6449, 9151, 1303, 10477, 2467, 4153, 20347, 1759, 1153, 18539, 20959, 57269, 10303, 7333, 11789, 2221, 59509, 4871, 1483, 1327, 23497, 20983, 38119, 3989, 929, 12941, 195887, 911, 7321, 13297, 2087, 201251, 8423, 13537, 5099, 1429, 1223, 13901, 70117, 8803, 1399, 3359, 9349, 75109, 5657, 15149, 2377, 17627, 5801, 9749, 234947, 983, 14867, 26539, 3331, 48163, 80929, 2903, 31219, 1049, 252767, 1279, 3581, 2707, 17393, 1637, 87649, 265007, 1187, 1289, 1229, 3191, 2269, 2939, 34297, 1181, 1451, 35089, 2357, 21839, 1979, 19213, 290351, 12143, 19501, 19937, 2207, 100417, 6299, 11321, 1237, 6037, 1621, 8009, 6991, 316847, 13249, 6257, 4003, 6719, 323651, 7243, 2957, 3209, 22189, 12413, 13499, 8713, 2861, 68899, 4801, 2267, 2719, 351587, 14699, 117989, 7919, 7499, 24077, 9059, 121189, 15199, 2633, 2729, 11551, 5743, 3121, 23561, 42023, 15227, 15913, 127717, 48049, 43403, 26209, 16433, 2287, 8269, 5309, 4993, 1861, 31019, 3371, 2081, 12721, 1723, 82183, 45943, 140417, 9419, 13757, 1693, 18043, 4217, 2017, 5479, 11273, 9187, 3697, 49739, 1559, 90067, 151009, 151909, 51239, 3877, 12611, 1549, 1471, 36527, 19843, 1873, 3407, 10037, 483167, 10799, 60919, 162917, 1571, 5783, 164789, 15493, 55243, 100003, 5407, 31517, 33713, 2113, 39119, 12821, 6857, 517151, 13037, 7283, 30931, 2549, 177217, 21383, 1489, 59723, 16843, 10597, 14009, 185089, 37217, 561251, 12539, 1823, 3767, 4013, 115879, 194149, 72997, 15013, 1811, 74149, 4969, 597827, 12487, 607151, 1951, 3203, 616547, 77659, 13009, 9631, 2131, 1609, 6637, 212917, 20011, 42797, 37951, 72043, 43441, 13933, 16493, 73483, 2137, 83689, 17209, 134887, 2789, 42461, 1657, 5689, 229217, 22397, 232549, 17483, 2749, 14639, 22721, 4903, 15727, 3547, 18233, 1747, 54959, 47857, 11243, 26713, 3347, 144931, 6053, 242689, 2683, 243829, 146983, 82039, 2909, 745247, 2423, 3343, 9511, 254209, 31849, 766127, 5701, 257717, 1871, 87083, 99079, 797987, 2777, 5021, 4129, 33623, 808751, 33773, 10177, 54881, 7933, 166099, 92683, 279269, 6997, 17569, 281717, 52937, 65579, 57329, 4007, 290369, 874847, 58573, 110059, 12281, 177223, 8017, 6967, 297889, 13807, 12491, 7703, 60337, 3779, 2099, 3851, 4019, 61613,

7. Distribution of the primes

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

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)
1106330.6000000.3000000.3000000.0000000.0000000.000000
21002210120.2200000.1000000.1200003.6666673.3333334.000000
31.000508894190.5080000.0890000.41900023.0909108.90000034.916668
410.0005.9466825.2640.5946000.0682000.52640011.7047247.66292112.563246
5100.00061.9925.15256.8400.6199200.0515200.56840010.4258337.55425210.797873
61.000.000633.49241.364592.1280.6334920.0413640.59212810.2189318.02872710.417453
710.000.0006.424.610346.8626.077.7480.6424610.0346860.60777510.1415818.38560110.264247
8100.000.00064.901.7102.986.19461.915.5160.6490170.0298620.61915510.1020478.60917010.187246
91.000.000.000654.033.01226.207.166627.825.8460.6540330.0262070.62782610.0772858.77611010.140040
1010.000.000.0006.580.366.742233.563.0146.346.803.7280.6580370.0233560.63468010.0612158.91218110.109179


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
243210.7500000.5000000.2500001.0000001.0000001.000000
385320.6250000.3750000.2500001.6666671.5000002.000000
4169540.5625000.3125000.2500001.8000001.6666672.000000
53216790.5000000.2187500.2812501.7777781.4000002.250000
664188100.2812500.1250000.1562501.1250001.1428571.111111
71283413210.2656250.1015620.1640621.8888891.6250002.100000
82569826720.3828120.1015620.2812502.8823532.0000003.428571
9512237471900.4628910.0917970.3710942.4183671.8076922.638889
101.024523914320.5107420.0888670.4218752.2067511.9361702.273684
112.0481.1251709550.5493160.0830080.4663092.1510521.8681322.210648
124.0962.3383252.0130.5708010.0793460.4914552.0782221.9117652.107853
138.1924.8395754.2640.5906980.0701900.5205082.0697181.7692312.118232
1416.3849.8421.0458.7970.6007080.0637820.5369262.0338911.8173912.063086
1532.76820.0121.93118.0810.6107180.0589290.5517882.0333271.8478472.055360
1665.53640.4293.55836.8710.6168980.0542910.5626072.0202381.8425692.039212
17131.07281.5346.56974.9650.6220550.0501170.5719382.0167211.8462622.033170
18262.144164.14512.280151.8650.6261630.0468440.5793192.0132091.8693872.025812
19524.288330.53223.027307.5050.6304400.0439210.5865192.0136591.8751632.024858
201.048.576664.48043.230621.2500.6336980.0412270.5924702.0103351.8773612.020292
212.097.1521.335.72881.7651.253.9630.6369250.0389890.5979362.0101851.8913952.018451
224.194.3042.682.181155.0412.527.1400.6394820.0369650.6025172.0080291.8961782.015323
238.388.6085.384.874294.4325.090.4420.6419270.0350990.6068282.0076481.8990592.014309
2416.777.21610.807.307561.79910.245.5080.6441660.0334860.6106802.0069751.9080772.012695
2533.554.43221.681.1731.072.84420.608.3290.6461490.0319730.6141762.0061591.9096582.011450
2667.108.86443.485.4612.053.94841.431.5130.6479840.0306060.6173782.0056781.9144892.010426
27134.217.72887.205.4333.938.88683.266.5470.6497310.0293470.6203842.0053931.9177152.009739
28268.435.456174.836.1817.564.041167.272.1400.6513160.0281780.6231372.0048771.9203502.008876
29536.870.912350.465.91814.552.111335.913.8070.6527940.0271050.6256882.0045391.9238542.008187
301.073.741.824702.416.58128.033.257674.383.3240.6541760.0261080.6280682.0042361.9264052.007608
312.147.483.6481.407.592.47154.093.1781.353.499.2930.6554610.0251890.6302722.0039281.9296072.007018
324.294.967.2962.820.363.049104.487.1932.715.875.8560.6566670.0243280.6323392.0036791.9316152.006559
338.589.934.5925.650.432.154202.082.3515.448.349.8030.6577970.0235250.6342712.0034411.9340392.006111
3417.179.869.18411.319.150.212391.259.39710.927.890.8150.6588610.0227740.6360872.0032361.9361382.005725


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
122010101
242010101
383110111
4165221121
5327422131
6648523131
712813753334
825626121337610
95124721256151016
101.02491405014301532
112.048170709920533166
124.0963251291953811255120
138.1925752183567520586209
1416.3841.045386658142361147395
1532.7681.9316851.245272676263720
1665.5363.5581.2702.2874921.2674701.329
17131.0726.5692.3214.2479042.3678492.449
18262.14412.2804.2957.9841.6784.4451.5804.577
19524.28823.0278.04314.9833.0958.3573.0438.532
201.048.57643.23015.05028.1795.79915.8315.67615.924
212.097.15281.76528.50353.26110.88030.02810.76030.097
224.194.304155.04153.934101.10620.48657.07920.36957.107
238.388.608294.432102.141192.29038.785108.44038.604108.603
2416.777.216561.799194.433367.36573.771207.32873.435207.265
2533.554.4321.072.844370.769702.074140.582396.370140.410395.482
2667.108.8642.053.948708.7231.345.224267.774759.885267.706758.583
27134.217.7283.938.8861.357.3492.581.536512.6001.457.363512.5121.456.411
28268.435.4567.564.0412.603.7274.960.313982.4132.799.908982.6332.799.087
29536.870.91214.552.1115.002.0879.550.0231.887.6455.387.6751.888.4885.388.303
301.073.741.82428.033.2579.628.05618.405.2003.632.62210.383.7033.632.91910.384.013
312.147.483.64854.093.17818.558.47135.534.7067.000.32320.041.4147.001.90820.049.533
324.294.967.296104.487.19335.813.83768.673.35513.508.28738.730.31613.511.96438.736.626
338.589.934.592202.082.35169.200.449132.881.90126.100.29174.937.54326.099.64774.944.870
3417.179.869.184391.259.397133.863.793257.395.60350.480.486145.150.88850.479.997145.148.026


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
382111001
4164221102
5329542214
66410552314
71282110115637
825672333924171219
95121901048650475241
101.02443222320911610811593
112.048955489466270214245226
124.0962.0131.016997549458540466
138.1924.2642.1382.1261.1231.0191.136986
1416.3848.7974.3934.4042.2732.1012.3342.089
1532.76818.0819.1148.9674.6804.3064.8174.278
1665.53636.87118.52618.3459.6698.7499.7508.703
17131.07274.96537.84237.12319.57517.86719.67917.844
18262.144151.86576.66375.20239.41136.42339.71836.313
19524.288307.505155.087152.41879.54073.97680.01573.974
201.048.576621.250313.154308.096160.668149.635160.850150.097
212.097.1521.253.963631.696622.267323.868302.593323.854303.648
224.194.3042.527.1401.272.1891.254.951650.951611.230651.890613.069
238.388.6085.090.4422.562.8662.527.5761.309.5451.234.8271.310.0081.236.062
2416.777.21610.245.5085.157.1035.088.4052.632.6532.490.8012.631.2782.490.776
2533.554.43220.608.32910.367.93010.240.3995.288.2455.016.8345.288.7045.014.546
2667.108.86441.431.51320.834.79420.596.71910.619.97010.100.54610.614.14510.096.852
27134.217.72883.266.54741.862.10441.404.44321.318.62120.322.61521.309.32820.315.983
28268.435.456167.272.14084.073.74383.198.39742.776.07940.868.60842.772.78040.854.673
29536.870.912335.913.807168.803.413167.110.39485.826.13382.144.19885.812.59982.130.877
301.073.741.824674.383.324338.815.374335.567.950172.139.198165.068.809172.118.606165.056.711
312.147.483.6481.353.499.293679.898.515673.600.778345.197.671331.558.335345.177.303331.565.984
324.294.967.2962.715.875.8561.364.030.4691.351.845.387692.134.204665.811.738692.107.250665.822.664
338.589.934.5925.448.349.8032.735.948.6522.712.401.1511.387.550.6681.336.610.9291.387.546.4071.336.641.799
3417.179.869.18410.927.890.8155.486.673.5665.441.217.2492.781.220.2452.682.705.8122.781.233.1252.682.731.633


8. Check for existing Integer Sequences by OEIS

Found in Database : 47, 3, 31, 5, 1, 1, 349, 17, 1, 13, 191, 1, 673, 1, 1, 101, 283, 37, 1, 1,
Found in Database : 47, 3, 31, 5, 349, 17, 13, 191, 673, 101, 283, 37, 331, 383, 73, 79, 1213, 137, 83, 1249,
Found in Database : 3, 5, 13, 17, 31, 37, 47, 73, 79, 83, 97, 101, 103, 137, 139,