Inhaltsverzeichnis

Development of
Algorithmic Constructions

19:03:42
Deutsch
18.Apr 2024

Polynom = x^2-68x+11

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) = 11 = 11
f(1) = 7 = 7
f(2) = 121 = 11*11
f(3) = 23 = 23
f(4) = 245 = 5*7*7
f(5) = 19 = 19
f(6) = 361 = 19*19
f(7) = 13 = 13
f(8) = 469 = 7*67
f(9) = 65 = 5*13
f(10) = 569 = 569
f(11) = 77 = 7*11
f(12) = 661 = 661
f(13) = 11 = 11
f(14) = 745 = 5*149
f(15) = 49 = 7*7
f(16) = 821 = 821
f(17) = 107 = 107
f(18) = 889 = 7*127
f(19) = 115 = 5*23
f(20) = 949 = 13*73
f(21) = 61 = 61
f(22) = 1001 = 7*11*13
f(23) = 1 = 1
f(24) = 1045 = 5*11*19
f(25) = 133 = 7*19
f(26) = 1081 = 23*47
f(27) = 137 = 137
f(28) = 1109 = 1109
f(29) = 35 = 5*7
f(30) = 1129 = 1129
f(31) = 71 = 71
f(32) = 1141 = 7*163
f(33) = 143 = 11*13
f(34) = 1145 = 5*229
f(35) = 143 = 11*13
f(36) = 1141 = 7*163
f(37) = 71 = 71
f(38) = 1129 = 1129
f(39) = 35 = 5*7
f(40) = 1109 = 1109
f(41) = 137 = 137
f(42) = 1081 = 23*47
f(43) = 133 = 7*19
f(44) = 1045 = 5*11*19
f(45) = 1 = 1
f(46) = 1001 = 7*11*13
f(47) = 61 = 61
f(48) = 949 = 13*73
f(49) = 115 = 5*23
f(50) = 889 = 7*127
f(51) = 107 = 107
f(52) = 821 = 821
f(53) = 49 = 7*7
f(54) = 745 = 5*149
f(55) = 11 = 11
f(56) = 661 = 661
f(57) = 77 = 7*11
f(58) = 569 = 569
f(59) = 65 = 5*13
f(60) = 469 = 7*67
f(61) = 13 = 13
f(62) = 361 = 19*19
f(63) = 19 = 19
f(64) = 245 = 5*7*7
f(65) = 23 = 23
f(66) = 121 = 11*11
f(67) = 7 = 7
f(68) = 11 = 11
f(69) = 5 = 5
f(70) = 151 = 151
f(71) = 7 = 7
f(72) = 299 = 13*23
f(73) = 47 = 47
f(74) = 455 = 5*7*13
f(75) = 67 = 67
f(76) = 619 = 619
f(77) = 11 = 11
f(78) = 791 = 7*113
f(79) = 55 = 5*11
f(80) = 971 = 971
f(81) = 133 = 7*19
f(82) = 1159 = 19*61
f(83) = 157 = 157
f(84) = 1355 = 5*271
f(85) = 91 = 7*13
f(86) = 1559 = 1559
f(87) = 13 = 13
f(88) = 1771 = 7*11*23
f(89) = 235 = 5*47
f(90) = 1991 = 11*181
f(91) = 263 = 263
f(92) = 2219 = 7*317
f(93) = 73 = 73
f(94) = 2455 = 5*491
f(95) = 161 = 7*23
f(96) = 2699 = 2699
f(97) = 353 = 353
f(98) = 2951 = 13*227
f(99) = 385 = 5*7*11
f(100) = 3211 = 13*13*19

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-68x+11

f(0)=11
f(1)=7
f(2)=1
f(3)=23
f(4)=5
f(5)=19
f(6)=1
f(7)=13
f(8)=67
f(9)=1
f(10)=569
f(11)=1
f(12)=661
f(13)=1
f(14)=149
f(15)=1
f(16)=821
f(17)=107
f(18)=127
f(19)=1
f(20)=73
f(21)=61
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=47
f(27)=137
f(28)=1109
f(29)=1
f(30)=1129
f(31)=71
f(32)=163
f(33)=1
f(34)=229
f(35)=1
f(36)=1
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)=151
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=619
f(77)=1
f(78)=113
f(79)=1
f(80)=971
f(81)=1
f(82)=1
f(83)=157
f(84)=271
f(85)=1
f(86)=1559
f(87)=1
f(88)=1
f(89)=1
f(90)=181
f(91)=263
f(92)=317
f(93)=1
f(94)=491
f(95)=1
f(96)=2699
f(97)=353
f(98)=227
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-68x+11 could be written as f(y)= y^2-1145 with x=y+34

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-34
f'(x)>2x-69 with x > 34

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

11, 7, 1, 23, 5, 19, 1, 13, 67, 1, 569, 1, 661, 1, 149, 1, 821, 107, 127, 1, 73, 61, 1, 1, 1, 1, 47, 137, 1109, 1, 1129, 71, 163, 1, 229, 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, 151, 1, 1, 1, 1, 1, 619, 1, 113, 1, 971, 1, 1, 157, 271, 1, 1559, 1, 1, 1, 181, 263, 317, 1, 491, 1, 2699, 353, 227, 1, 1, 1, 1, 1, 751, 487, 577, 523, 1, 1, 421, 1, 449, 1, 1051, 677, 797, 359, 257, 1, 1, 1, 6599, 1, 1, 223, 563, 1, 7691, 197, 1153, 1033, 769, 541, 1, 283, 1, 1, 509, 1, 10091, 1, 1, 1, 313, 1, 11399, 1453, 1693, 1, 947, 1, 983, 1627, 241, 1, 1249, 1, 1, 1, 14731, 1873, 311, 1, 1, 1, 1, 1, 16811, 1, 17351, 2203, 2557, 1, 3691, 1171, 1, 1, 1, 1, 877, 1279, 20759, 1, 4271, 2707, 3137, 1, 22571, 1, 3313, 1, 23819, 431, 1, 1, 1321, 1, 2341, 1, 1, 3343, 2083, 1, 1, 439, 28439, 1, 29131, 1, 1297, 1, 30539, 1931, 1, 1, 1, 1, 4673, 827, 3041, 1, 3109, 2161, 6991, 631, 1553, 4513, 401, 461, 1, 1, 5437, 1, 409, 701, 39659, 1, 40471, 1, 1, 1, 547, 1, 1, 2711, 6257, 691, 44651, 1, 641, 5743, 2441, 1, 727, 1, 1, 6073, 49031, 1237, 1019, 1, 50839, 1, 941, 1, 4789, 1, 53611, 1, 7793, 1, 1, 6997, 1613, 647, 857, 1, 58391, 1, 4567, 1069, 4643, 7607, 1753, 1933, 5669, 3929, 823, 1597, 3389, 1, 65419, 1, 13291, 1, 67499, 773, 1399, 1, 1, 1, 1, 4451, 1, 1291, 1, 9173, 1, 1, 1, 1181, 1, 9587, 15451, 1, 11197, 2467, 3457, 1, 80651, 1, 81799, 1471, 1, 1, 1, 2647, 1, 1, 1123, 10883, 613, 1, 1367, 5591, 90059, 1619, 853, 2297, 1, 1, 93719, 1, 2713, 919, 96199, 1, 1, 1, 98711, 887, 1, 12577, 1, 1, 102539, 6449, 1, 653, 8087, 1889, 1, 1217, 937, 1, 5741, 1, 15773, 2777, 111751, 1, 1, 1, 2081, 1, 10529, 14563, 117191, 1, 118571, 3727, 17137, 7541, 1867, 1, 1, 1, 124171, 1, 125591, 3947, 1789, 2281, 1117, 1, 1, 1, 11941, 1, 18973, 16693, 2857, 2411, 1429, 1, 137239, 1, 138731, 1, 1, 17623, 10903, 1, 4093, 9001, 144779, 1, 1, 3677, 13441, 1327, 149399, 1, 1, 1459, 152519, 19163, 22013, 1, 155671, 1, 157259, 859, 31771, 2851, 12343, 10079, 1, 1, 1, 20563, 1, 1093, 33391, 1, 168599, 10589, 2791, 1, 1, 1, 1, 991, 35051, 5503, 1, 1, 2447, 1, 180331, 1, 1, 1, 1, 1, 26497, 23293, 187211, 2351, 26993, 1483, 190699, 1, 1, 1, 1, 1, 195991, 1, 1487, 1307, 199559, 25057, 1, 12641, 1, 911, 15767, 5147, 15907, 3709, 1, 1637, 1, 1201, 4517, 2423, 30593, 1, 11369, 1, 9473, 1, 43951, 1, 20149, 27823, 2903, 1, 225431, 14149, 1, 28537, 3527, 4111, 17783, 1319, 12269, 1, 235051, 1, 33857, 1, 47791, 1, 1, 1163, 1, 1, 1, 1, 10733, 2213, 1, 1, 35837, 1657, 13309, 1, 2801, 1, 19763, 1, 1, 32497, 260999, 4679, 11437, 3301, 1, 8317, 1, 2579, 1, 1, 14281, 1, 2153, 1, 275531, 1, 277639, 3167, 7993, 17551, 21683, 4421, 3121, 7127, 4691, 1, 26209, 9043, 5281, 1, 15401, 36713, 1831, 1, 296971, 1433, 42737, 1, 60271, 1, 2837, 38083, 305771, 1, 6553, 19319, 1, 38917, 1, 2063, 1, 19739, 316951, 1, 319211, 1741, 2129, 1, 1, 1, 1, 1, 328331, 8237, 1, 1, 1493, 1, 3529, 10513, 30689, 1, 2377, 8527, 3761, 2683, 344599, 21611, 1, 43517, 1289, 1, 351691, 1, 1, 1, 1, 1, 10253, 45007, 1499, 1, 4723, 4561, 1447, 1, 1, 1, 1, 3323, 28723, 1, 53693, 1, 2539, 1, 1, 1, 76651, 3433, 385739, 1, 388231, 1, 35521, 24499, 5107, 1, 79151, 49627, 56897, 49943, 3547, 1, 1, 1, 31223, 1, 1, 51217, 1, 1, 6173, 2593, 59453, 52183, 38069, 1, 1, 1, 18433, 3797, 2617, 1, 1, 53813, 7079, 1, 12413, 1, 33623, 7829, 33827, 11027, 9413, 1, 2459, 27901, 1, 1, 40949, 56473, 3407, 1, 455831, 1, 3347, 57487, 92251, 1, 20173, 1, 1, 5851, 2383, 1, 5189, 59197, 7307, 4253, 1, 1, 1, 1721, 7213, 1, 3019, 15233, 97771, 2357, 70237, 1, 494471, 1, 497291, 1, 500119, 2239, 100591, 1, 3803, 1, 3557, 1, 1, 32059, 514379, 1, 103451, 2819, 4603, 4657, 523031, 1, 75133, 1, 22993, 5099, 15193, 1, 1, 4787, 537611, 13477, 1, 9679, 49409, 34061, 1, 17123, 3251, 68863, 1, 1, 4373, 1, 1973, 3181, 1, 1, 564359, 5441, 11579, 1, 570391, 1, 1, 71867, 1, 10321, 579499, 1, 582551, 1, 1, 3191, 6469, 1, 6229, 3371, 84977, 18637, 25997, 2141, 601031, 75323, 1, 1, 1, 2927, 7927, 76493, 8641, 15377, 88093, 38639, 32621, 1, 5417, 1, 48163, 1, 48407, 3943, 90353, 1723, 635659, 79657, 18253, 1, 58369, 1, 58661, 1, 10631, 1, 34301, 81667, 18713, 10259, 658199, 1, 13499, 1, 664711, 1, 51383, 41851, 1, 1, 1, 84523, 8803, 16987, 3259, 1, 97777, 1, 2053, 1, 691079, 6661, 4423, 1, 1, 1987, 2131, 1, 140891, 1, 101117, 1, 1, 1, 1, 89533, 65269, 1, 144271, 45191, 2113, 11351, 15493, 1, 104513, 1, 735019, 1, 1, 46261, 10163, 1, 39229, 1, 4651, 1, 68389, 23563, 1, 94687, 58403, 1, 5119, 2389, 766231, 6857, 769739, 1, 22093, 8807, 33773, 1, 5867, 1, 1, 14029, 1, 4289, 1, 3539, 72229, 1, 114013, 19997, 61667, 1, 8849, 50441, 161771, 1, 1, 1, 1, 1, 819691, 3209, 117617, 3967, 165391, 1, 1, 104053, 1, 1, 3659, 13121, 1999, 15061, 2381, 5573, 1, 2417, 65587, 1, 1, 107273, 1, 15391, 172751, 54101, 18457, 3881, 79201, 1, 1, 8431, 878699, 13759, 1, 2909, 5869, 15859, 3463, 2027, 8353, 1, 1, 7027, 1, 4909, 6607, 113383, 129853, 5693, 82981, 8167, 3623, 6043, 9689, 1, 924299, 1, 1979, 5813,

6. Sequence of the polynom (only primes)

11, 7, 23, 5, 19, 13, 67, 569, 661, 149, 821, 107, 127, 73, 61, 47, 137, 1109, 1129, 71, 163, 229, 151, 619, 113, 971, 157, 271, 1559, 181, 263, 317, 491, 2699, 353, 227, 751, 487, 577, 523, 421, 449, 1051, 677, 797, 359, 257, 6599, 223, 563, 7691, 197, 1153, 1033, 769, 541, 283, 509, 10091, 313, 11399, 1453, 1693, 947, 983, 1627, 241, 1249, 14731, 1873, 311, 16811, 17351, 2203, 2557, 3691, 1171, 877, 1279, 20759, 4271, 2707, 3137, 22571, 3313, 23819, 431, 1321, 2341, 3343, 2083, 439, 28439, 29131, 1297, 30539, 1931, 4673, 827, 3041, 3109, 2161, 6991, 631, 1553, 4513, 401, 461, 5437, 409, 701, 39659, 40471, 547, 2711, 6257, 691, 44651, 641, 5743, 2441, 727, 6073, 49031, 1237, 1019, 50839, 941, 4789, 53611, 7793, 6997, 1613, 647, 857, 58391, 4567, 1069, 4643, 7607, 1753, 1933, 5669, 3929, 823, 1597, 3389, 65419, 13291, 67499, 773, 1399, 4451, 1291, 9173, 1181, 9587, 15451, 11197, 2467, 3457, 80651, 81799, 1471, 2647, 1123, 10883, 613, 1367, 5591, 90059, 1619, 853, 2297, 93719, 2713, 919, 96199, 98711, 887, 12577, 102539, 6449, 653, 8087, 1889, 1217, 937, 5741, 15773, 2777, 111751, 2081, 10529, 14563, 117191, 118571, 3727, 17137, 7541, 1867, 124171, 125591, 3947, 1789, 2281, 1117, 11941, 18973, 16693, 2857, 2411, 1429, 137239, 138731, 17623, 10903, 4093, 9001, 144779, 3677, 13441, 1327, 149399, 1459, 152519, 19163, 22013, 155671, 157259, 859, 31771, 2851, 12343, 10079, 20563, 1093, 33391, 168599, 10589, 2791, 991, 35051, 5503, 2447, 180331, 26497, 23293, 187211, 2351, 26993, 1483, 190699, 195991, 1487, 1307, 199559, 25057, 12641, 911, 15767, 5147, 15907, 3709, 1637, 1201, 4517, 2423, 30593, 11369, 9473, 43951, 20149, 27823, 2903, 225431, 14149, 28537, 3527, 4111, 17783, 1319, 12269, 235051, 33857, 47791, 1163, 10733, 2213, 35837, 1657, 13309, 2801, 19763, 32497, 260999, 4679, 11437, 3301, 8317, 2579, 14281, 2153, 275531, 277639, 3167, 7993, 17551, 21683, 4421, 3121, 7127, 4691, 26209, 9043, 5281, 15401, 36713, 1831, 296971, 1433, 42737, 60271, 2837, 38083, 305771, 6553, 19319, 38917, 2063, 19739, 316951, 319211, 1741, 2129, 328331, 8237, 1493, 3529, 10513, 30689, 2377, 8527, 3761, 2683, 344599, 21611, 43517, 1289, 351691, 10253, 45007, 1499, 4723, 4561, 1447, 3323, 28723, 53693, 2539, 76651, 3433, 385739, 388231, 35521, 24499, 5107, 79151, 49627, 56897, 49943, 3547, 31223, 51217, 6173, 2593, 59453, 52183, 38069, 18433, 3797, 2617, 53813, 7079, 12413, 33623, 7829, 33827, 11027, 9413, 2459, 27901, 40949, 56473, 3407, 455831, 3347, 57487, 92251, 20173, 5851, 2383, 5189, 59197, 7307, 4253, 1721, 7213, 3019, 15233, 97771, 2357, 70237, 494471, 497291, 500119, 2239, 100591, 3803, 3557, 32059, 514379, 103451, 2819, 4603, 4657, 523031, 75133, 22993, 5099, 15193, 4787, 537611, 13477, 9679, 49409, 34061, 17123, 3251, 68863, 4373, 1973, 3181, 564359, 5441, 11579, 570391, 71867, 10321, 579499, 582551, 3191, 6469, 6229, 3371, 84977, 18637, 25997, 2141, 601031, 75323, 2927, 7927, 76493, 8641, 15377, 88093, 38639, 32621, 5417, 48163, 48407, 3943, 90353, 1723, 635659, 79657, 18253, 58369, 58661, 10631, 34301, 81667, 18713, 10259, 658199, 13499, 664711, 51383, 41851, 84523, 8803, 16987, 3259, 97777, 2053, 691079, 6661, 4423, 1987, 2131, 140891, 101117, 89533, 65269, 144271, 45191, 2113, 11351, 15493, 104513, 735019, 46261, 10163, 39229, 4651, 68389, 23563, 94687, 58403, 5119, 2389, 766231, 6857, 769739, 22093, 8807, 33773, 5867, 14029, 4289, 3539, 72229, 114013, 19997, 61667, 8849, 50441, 161771, 819691, 3209, 117617, 3967, 165391, 104053, 3659, 13121, 1999, 15061, 2381, 5573, 2417, 65587, 107273, 15391, 172751, 54101, 18457, 3881, 79201, 8431, 878699, 13759, 2909, 5869, 15859, 3463, 2027, 8353, 7027, 4909, 6607, 113383, 129853, 5693, 82981, 8167, 3623, 6043, 9689, 924299, 1979, 5813,

7. Distribution of the primes

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

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)
1107340.7000000.3000000.7000000.0000000.0000000.000000
21003212200.3200000.1200000.3200004.5714294.0000005.000000
31.000569954740.5690000.0950000.56900017.7812507.91666723.700001
410.0006.2137165.4970.6213000.0716000.62130010.9191567.53684211.597047
5100.00064.2745.49858.7760.6427400.0549800.64274010.3450837.67877110.692378
61.000.000651.69545.734605.9610.6516950.0457340.65169510.1393258.31829710.309668
710.000.0006.577.868387.3426.190.5260.6577870.0387340.65778710.0934768.46945410.216047
8100.000.00066.232.2723.356.21062.876.0620.6623230.0335620.66232310.0689578.66472110.156821
91.000.000.000665.807.51229.620.777636.186.7350.6658070.0296210.66580710.0526148.82566310.118107
1010.000.000.0006.685.841.269265.078.7336.420.762.5360.6685840.0265080.66858410.0417038.94908110.092575


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)
122111.0000000.5000000.5000000.0000000.0000000.000000
244221.0000000.5000000.5000002.0000002.0000002.000000
386240.7500000.2500000.5000001.5000001.0000002.000000
41610550.6250000.3125000.3125001.6666672.5000001.250000
532197120.5937500.2187500.3750001.9000001.4000002.400000
664207130.3125000.1093750.2031251.0526321.0000001.083333
71284614320.3593750.1093750.2500002.3000002.0000002.461539
825611228840.4375000.1093750.3281252.4347832.0000002.625000
9512263602030.5136720.1171880.3964842.3482142.1428572.416667
101.024584984860.5703120.0957030.4746092.2205321.6333332.394089
112.0481.2141771.0370.5927730.0864260.5063482.0787671.8061222.133745
124.0962.4863192.1670.6069340.0778810.5290532.0477761.8022602.089682
138.1925.0746044.4700.6193850.0737300.5456542.0410301.8934172.062760
1416.38410.3001.1059.1950.6286620.0674440.5612182.0299571.8294702.057047
1532.76820.8182.04218.7760.6353150.0623170.5729982.0211651.8479642.041979
1665.53641.9593.78038.1790.6402440.0576780.5825652.0155151.8511262.033394
17131.07284.3867.07877.3080.6438140.0540010.5898132.0111541.8724872.024883
18262.144169.51613.506156.0100.6466520.0515210.5951312.0088171.9081662.018032
19524.288340.48025.304315.1760.6494140.0482640.6011512.0085421.8735382.020230
201.048.576683.52747.898635.6290.6518620.0456790.6061832.0075391.8929022.016743
212.097.1521.371.25290.9611.280.2910.6538640.0433740.6104902.0061421.8990562.014211
224.194.3042.750.283172.8522.577.4310.6557190.0412110.6145072.0056731.9002872.013160
238.388.6085.514.447328.7955.185.6520.6573730.0391950.6181782.0050471.9021762.011946
2416.777.21611.055.829627.48410.428.3450.6589790.0374010.6215782.0048841.9084352.011000
2533.554.43222.156.5741.201.72320.954.8510.6603170.0358140.6245032.0040631.9151452.009413
2667.108.86444.399.1762.305.31542.093.8610.6615990.0343520.6272472.0038831.9183412.008788
27134.217.72888.961.5194.429.01684.532.5030.6628150.0329990.6298162.0036751.9212192.008191
28268.435.456178.222.4788.520.505169.701.9730.6639300.0317410.6321892.0033661.9237922.007535
29536.870.912356.990.76216.422.160340.568.6020.6649470.0305890.6343582.0030621.9273692.006863
301.073.741.824715.007.34431.692.316683.315.0280.6659020.0295160.6363872.0028741.9298512.006395
312.147.483.6481.431.928.36961.230.4211.370.697.9480.6667940.0285130.6382812.0026761.9320272.005953
324.294.967.2962.867.456.117118.421.7252.749.034.3920.6676320.0275720.6400592.0025141.9340342.005573
338.589.934.5925.741.657.563229.292.3095.512.365.2540.6684170.0266930.6417242.0023521.9362352.005200
3417.179.869.18411.495.982.378444.423.59311.051.558.7850.6691540.0258690.6432852.0022061.9382402.004867


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
121010100
242020110
382020110
4165141130
5327252140
6647252140
7128144102543
82562872121448
9512601941228426
101.024983563247445
112.04817759118291480
124.09631910521421544159
138.19260420340122944304
1416.3841.10536773825384561
1532.7682.0426861.356299941.037
1665.5363.7801.2642.51621.84541.929
17131.0727.0782.3924.68623.49843.574
18262.14413.5064.5198.98726.74046.760
19524.28825.3048.44116.863212.675412.623
201.048.57647.89816.01731.881224.014423.878
212.097.15290.96130.30660.655245.443445.512
224.194.304172.85257.581115.271286.386486.460
238.388.608328.795109.670219.1252164.4854164.304
2416.777.216627.484209.286418.1982313.9734313.505
2533.554.4321.201.723400.608801.1152601.2814600.436
2667.108.8642.305.315768.5611.536.75421.153.24041.152.069
27134.217.7284.429.0161.475.4322.953.58422.215.98442.213.026
28268.435.4568.520.5052.838.0505.682.45524.262.74344.257.756
29536.870.91216.422.1605.470.54210.951.61828.211.93448.210.220
301.073.741.82431.692.31610.561.94621.130.370215.845.901415.846.409
312.147.483.64861.230.42120.404.89440.825.527230.613.355430.617.060
324.294.967.296118.421.72539.471.84278.949.883259.209.009459.212.710
338.589.934.592229.292.30976.430.449152.861.8602114.640.3204114.651.983
3417.179.869.184444.423.593148.139.629296.283.9642222.202.6904222.220.897


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
242110002
384310202
4165320212
53212752424
66413852434
71283216166989
825684513324211920
95122031158853465450
101.024486254232121117139109
112.0481.037522515274243286234
124.0962.1671.0891.078586497579505
138.1924.4702.2752.1951.1831.0651.1841.038
1416.3849.1954.6164.5792.4582.2102.3952.132
1532.76818.7769.4599.3174.9094.5274.8624.478
1665.53638.17919.26418.9159.9319.1259.8799.244
17131.07277.30838.79538.51320.07018.60519.87618.757
18262.144156.01078.64277.36840.32337.82240.00337.862
19524.288315.176159.022156.15481.08076.53180.85776.708
201.048.576635.629320.610315.019163.033154.427163.461154.708
212.097.1521.280.291645.325634.966327.818311.417328.646312.410
224.194.3042.577.4311.298.7781.278.653658.568629.378659.746629.739
238.388.6085.185.6522.612.4392.573.2131.323.6971.268.0111.325.2041.268.740
2416.777.21610.428.3455.248.5175.179.8282.660.9792.551.9922.661.6502.553.724
2533.554.43220.954.85110.542.45510.412.3965.342.3985.134.3165.341.8255.136.312
2667.108.86442.093.86121.171.82720.922.03410.720.09610.323.76510.723.75110.326.249
27134.217.72884.532.50342.504.11042.028.39321.515.59920.745.91821.515.74120.755.245
28268.435.456169.701.97385.312.09484.389.87943.164.75841.683.64143.160.02041.693.554
29536.870.912340.568.602171.165.659169.402.94386.565.40683.713.06386.558.35183.731.782
301.073.741.824683.315.028343.360.039339.954.989173.567.721168.070.427173.567.585168.109.295
312.147.483.6481.370.697.948688.615.745682.082.203347.951.245337.382.377347.941.005337.423.321
324.294.967.2962.749.034.3921.380.845.9371.368.188.455697.434.159677.068.057697.448.764677.083.412
338.589.934.5925.512.365.2542.768.436.9212.743.928.3331.397.764.4851.358.401.7741.397.793.3651.358.405.630
3417.179.869.18411.051.558.7855.549.595.5355.501.963.2502.800.936.6172.724.809.8202.801.013.9192.724.798.429


8. Check for existing Integer Sequences by OEIS

Found in Database : 11, 7, 1, 23, 5, 19, 1, 13, 67, 1, 569, 1, 661, 1, 149, 1, 821, 107, 127, 1,
Found in Database : 11, 7, 23, 5, 19, 13, 67, 569, 661, 149, 821, 107, 127, 73, 61, 47, 137, 1109, 1129, 71, 163, 229,
Found in Database : 5, 7, 11, 13, 19, 23, 47, 61, 67, 71, 73, 107, 113, 127, 137, 149,