Inhaltsverzeichnis

Development of
Algorithmic Constructions

14:03:30
Deutsch
20.Apr 2024

Polynom = x^2+72x+23

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) = 23 = 23
f(1) = 3 = 3
f(2) = 171 = 3*3*19
f(3) = 31 = 31
f(4) = 327 = 3*109
f(5) = 51 = 3*17
f(6) = 491 = 491
f(7) = 9 = 3*3
f(8) = 663 = 3*13*17
f(9) = 47 = 47
f(10) = 843 = 3*281
f(11) = 117 = 3*3*13
f(12) = 1031 = 1031
f(13) = 141 = 3*47
f(14) = 1227 = 3*409
f(15) = 83 = 83
f(16) = 1431 = 3*3*3*53
f(17) = 3 = 3
f(18) = 1643 = 31*53
f(19) = 219 = 3*73
f(20) = 1863 = 3*3*3*3*23
f(21) = 247 = 13*19
f(22) = 2091 = 3*17*41
f(23) = 69 = 3*23
f(24) = 2327 = 13*179
f(25) = 153 = 3*3*17
f(26) = 2571 = 3*857
f(27) = 337 = 337
f(28) = 2823 = 3*941
f(29) = 369 = 3*3*41
f(30) = 3083 = 3083
f(31) = 201 = 3*67
f(32) = 3351 = 3*1117
f(33) = 109 = 109
f(34) = 3627 = 3*3*13*31
f(35) = 471 = 3*157
f(36) = 3911 = 3911
f(37) = 507 = 3*13*13
f(38) = 4203 = 3*3*467
f(39) = 17 = 17
f(40) = 4503 = 3*19*79
f(41) = 291 = 3*97
f(42) = 4811 = 17*283
f(43) = 621 = 3*3*3*23
f(44) = 5127 = 3*1709
f(45) = 661 = 661
f(46) = 5451 = 3*23*79
f(47) = 351 = 3*3*3*13
f(48) = 5783 = 5783
f(49) = 93 = 3*31
f(50) = 6123 = 3*13*157
f(51) = 787 = 787
f(52) = 6471 = 3*3*719
f(53) = 831 = 3*277
f(54) = 6827 = 6827
f(55) = 219 = 3*73
f(56) = 7191 = 3*3*17*47
f(57) = 461 = 461
f(58) = 7563 = 3*2521
f(59) = 969 = 3*17*19
f(60) = 7943 = 13*13*47
f(61) = 1017 = 3*3*113
f(62) = 8331 = 3*2777
f(63) = 533 = 13*41
f(64) = 8727 = 3*2909
f(65) = 279 = 3*3*31
f(66) = 9131 = 23*397
f(67) = 1167 = 3*389
f(68) = 9543 = 3*3181
f(69) = 1219 = 23*53
f(70) = 9963 = 3*3*3*3*3*41
f(71) = 159 = 3*53
f(72) = 10391 = 10391
f(73) = 663 = 3*13*17
f(74) = 10827 = 3*3*3*401
f(75) = 1381 = 1381
f(76) = 11271 = 3*13*17*17
f(77) = 1437 = 3*479
f(78) = 11723 = 19*617
f(79) = 747 = 3*3*83
f(80) = 12183 = 3*31*131
f(81) = 97 = 97
f(82) = 12651 = 3*4217
f(83) = 1611 = 3*3*179
f(84) = 13127 = 13127
f(85) = 1671 = 3*557
f(86) = 13611 = 3*13*349
f(87) = 433 = 433
f(88) = 14103 = 3*3*1567
f(89) = 897 = 3*13*23
f(90) = 14603 = 17*859
f(91) = 1857 = 3*619
f(92) = 15111 = 3*3*23*73
f(93) = 1921 = 17*113
f(94) = 15627 = 3*5209
f(95) = 993 = 3*331
f(96) = 16151 = 31*521
f(97) = 513 = 3*3*3*19
f(98) = 16683 = 3*67*83
f(99) = 2119 = 13*163
f(100) = 17223 = 3*5741

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+23

f(0)=23
f(1)=3
f(2)=19
f(3)=31
f(4)=109
f(5)=17
f(6)=491
f(7)=1
f(8)=13
f(9)=47
f(10)=281
f(11)=1
f(12)=1031
f(13)=1
f(14)=409
f(15)=83
f(16)=53
f(17)=1
f(18)=1
f(19)=73
f(20)=1
f(21)=1
f(22)=41
f(23)=1
f(24)=179
f(25)=1
f(26)=857
f(27)=337
f(28)=941
f(29)=1
f(30)=3083
f(31)=67
f(32)=1117
f(33)=1
f(34)=1
f(35)=157
f(36)=3911
f(37)=1
f(38)=467
f(39)=1
f(40)=79
f(41)=97
f(42)=283
f(43)=1
f(44)=1709
f(45)=661
f(46)=1
f(47)=1
f(48)=5783
f(49)=1
f(50)=1
f(51)=787
f(52)=719
f(53)=277
f(54)=6827
f(55)=1
f(56)=1
f(57)=461
f(58)=2521
f(59)=1
f(60)=1
f(61)=113
f(62)=2777
f(63)=1
f(64)=2909
f(65)=1
f(66)=397
f(67)=389
f(68)=3181
f(69)=1
f(70)=1
f(71)=1
f(72)=10391
f(73)=1
f(74)=401
f(75)=1381
f(76)=1
f(77)=479
f(78)=617
f(79)=1
f(80)=131
f(81)=1
f(82)=4217
f(83)=1
f(84)=13127
f(85)=557
f(86)=349
f(87)=433
f(88)=1567
f(89)=1
f(90)=859
f(91)=619
f(92)=1
f(93)=1
f(94)=5209
f(95)=331
f(96)=521
f(97)=1
f(98)=1
f(99)=163

b) Substitution of the polynom
The polynom f(x)=x^2+72x+23 could be written as f(y)= y^2-1273 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+71

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

23, 3, 19, 31, 109, 17, 491, 1, 13, 47, 281, 1, 1031, 1, 409, 83, 53, 1, 1, 73, 1, 1, 41, 1, 179, 1, 857, 337, 941, 1, 3083, 67, 1117, 1, 1, 157, 3911, 1, 467, 1, 79, 97, 283, 1, 1709, 661, 1, 1, 5783, 1, 1, 787, 719, 277, 6827, 1, 1, 461, 2521, 1, 1, 113, 2777, 1, 2909, 1, 397, 389, 3181, 1, 1, 1, 10391, 1, 401, 1381, 1, 479, 617, 1, 131, 1, 4217, 1, 13127, 557, 349, 433, 1567, 1, 859, 619, 1, 1, 5209, 331, 521, 1, 1, 163, 5741, 1, 1367, 1, 149, 1163, 2099, 1, 19463, 823, 1, 1, 1, 1, 21227, 1, 383, 2767, 7481, 1, 23063, 487, 1, 3001, 1, 1, 24971, 1, 1, 811, 8761, 1109, 26951, 379, 9209, 1, 9437, 199, 1, 1223, 9901, 1, 1, 641, 1831, 1, 3539, 4027, 10861, 1373, 709, 1, 1, 2153, 1, 1, 35591, 1499, 1, 2297, 4127, 1, 457, 1597, 1, 1, 13177, 1, 40343, 1, 13721, 5197, 13997, 1, 1, 1, 14557, 1, 1, 1873, 3491, 1, 571, 1459, 683, 991, 1171, 673, 16301, 1, 1277, 1, 1, 1, 17209, 1, 5839, 1, 677, 1, 6047, 1, 18457, 1, 1, 263, 1, 1, 19421, 1, 59243, 1, 1181, 7591, 6803, 643, 4787, 1307, 7027, 613, 691, 2699, 599, 1, 22109, 2089, 1321, 1, 1291, 1, 1, 547, 1, 1481, 1747, 1, 2693, 9157, 1, 1549, 74903, 1, 1949, 563, 1, 1, 4603, 821, 1, 1, 1, 1, 81671, 1, 9203, 1, 27997, 881, 6551, 1, 1693, 10867, 1, 1, 1069, 1861, 967, 11317, 1, 3823, 92363, 1, 10399, 1, 1, 1, 4177, 1, 32441, 3061, 1933, 1, 3221, 1, 2593, 12721, 3793, 1, 103703, 1087, 3889, 1, 35437, 4457, 1, 1, 1579, 1, 36761, 1, 111623, 4679, 37657, 7103, 12703, 1, 6089, 373, 13007, 359, 3037, 1, 119831, 1, 2377, 15241, 997, 1, 761, 1, 3217, 3943, 1, 1, 128327, 1, 14419, 2039, 1, 2749, 1, 1, 1, 1297, 853, 947, 1, 1, 983, 17419, 5189, 5869, 1, 1483, 1, 1, 3709, 1, 8599, 1, 1201, 9281, 49757, 1, 150827, 6317, 1, 1, 17107, 1, 1427, 3257, 1, 1039, 1, 1, 2393, 1, 2347, 2543, 54521, 1, 1, 6917, 55609, 1, 18719, 3527, 170123, 419, 19087, 21577, 1, 3631, 2399, 1, 58937, 1, 1, 1, 5813, 1, 60637, 11423, 2267, 7687, 10903, 7759, 1, 1, 1, 1, 1279, 2659, 64109, 24151, 2087, 1, 195863, 4099, 65881, 1, 22159, 1, 1, 4211, 1327, 6373, 68281, 8573, 1, 1, 69497, 1, 5393, 1, 1, 1, 71341, 1, 1, 4517, 1, 1, 1061, 1, 1571, 1, 223403, 1, 1, 1, 1429, 3169, 229127, 9587, 77017, 1, 8629, 2437, 1063, 9829, 1, 2287, 79609, 1249, 1, 1, 4259, 30469, 3547, 3413, 246731, 1, 4877, 1951, 2143, 1, 1, 1, 28307, 7993, 85597, 1, 258827, 1, 6689, 1723, 87641, 1, 1, 1, 89017, 1, 1759, 11257, 271211, 1, 30367, 1319, 91801, 11519, 21347, 1, 1123, 1, 4943, 1, 16699, 1, 1423, 2111, 1, 1, 290327, 1, 1, 36697, 98221, 12323, 296843, 2069, 1, 1, 1, 1, 303431, 12689, 1, 4793, 1, 1, 310091, 12967, 34703, 39181, 1, 6577, 24371, 1, 1, 3079, 6301, 1493, 17033, 1, 108637, 20441, 36467, 13723, 1, 1, 36979, 20873, 1, 1, 6367, 4703, 2137, 1, 114041, 1, 1, 1, 8893, 1, 1, 1, 351563, 7349, 13109, 1, 2897, 14897, 358727, 4999, 1, 1, 121181, 1, 28151, 15299, 1, 1, 41203, 1, 12041, 1, 1, 47119, 9697, 15809, 380651, 1, 127709, 24023, 7561, 1, 2381, 16223, 130201, 1289, 1409, 1, 395627, 1, 1, 49927, 5807, 1, 23719, 1, 135257, 1, 1, 5689, 31607, 1, 1, 1, 1, 17389, 418631, 17497, 15601, 3301, 141277, 1, 18541, 1, 1, 2339, 11069, 1, 9241, 2269, 1, 54787, 48847, 1, 442283, 4621, 3803, 27893, 1, 1439, 450311, 1, 4871, 1, 151901, 1, 1, 19157, 1, 4447, 51539, 2423, 1889, 9749, 52147, 3461, 2969, 19727, 1, 3307, 1, 1871, 1, 6691, 5821, 1553, 161977, 1, 1, 10211, 491531, 1, 1, 1999, 165721, 1, 6329, 1741, 12893, 63031, 2309, 7043, 1, 1, 1, 32051, 57139, 21487, 39779, 1, 3041, 1, 10253, 2731, 22861, 2441, 176237, 66271, 177209, 1, 1489, 1, 179161, 67369, 1, 1, 31963, 11351, 60703, 1, 1, 1, 552263, 7691, 1, 8699, 2549, 1, 11941, 23447, 6067, 70717, 1, 1, 5879, 1, 1, 5527, 10111, 24077, 1, 2017, 194141, 36497, 195161, 1, 1, 1, 1, 1, 1, 6211, 597803, 1, 1, 75307, 201337, 1, 607127, 1, 203417, 2467, 204461, 1, 616523, 1, 15889, 1, 69203, 26017, 1601, 1, 1, 1, 1, 1, 1, 8849, 212909, 1, 213977, 1, 9629, 6737, 12713, 1, 24133, 1, 654827, 1, 24373, 41231, 1, 1, 664583, 1, 9679, 41843, 1, 1, 3389, 1657, 17377, 84919, 4451, 1, 684311, 1, 76403, 86161, 2113, 28859, 1, 1, 12239, 1, 10159, 3253, 3187, 1, 1, 1, 1, 1, 714443, 1, 1697, 1, 18493, 15061, 724631, 1, 242681, 4801, 1, 1, 10067, 7673, 1, 2011, 1, 2383, 32401, 31123, 1, 46901, 1, 7853, 755627, 1, 3203, 95107, 1, 1, 1901, 1, 6257, 7417, 85903, 1, 776651, 16217, 3769, 1, 261241, 1, 6967, 1, 263609, 1, 20369, 1, 1, 1, 1, 100417, 89459, 16811, 15259, 8443, 1, 1, 271981, 2621, 819563, 1, 16141, 51563, 1, 1, 1, 34679, 278041, 4019, 10343, 4373, 1, 1, 1, 105871, 9127, 8861, 1, 1, 6961, 1, 1, 11969, 37549, 1, 2207, 1, 96787, 36373, 874823, 36529, 1, 13757, 1, 1, 1, 4111, 22817, 1, 297881, 1, 2663, 1, 1, 1, 100559, 1, 69911, 1, 4409, 4397, 305497, 2251, 22447, 12809, 18121, 57881, 3727, 3229, 931883, 1, 1, 1, 2677, 1, 943511, 19697, 35089, 118669, 1, 39719, 955211, 1, 24593, 15017, 321017, 1, 31193, 1, 323641, 30403, 5701, 1, 10091, 40867, 109199, 1, 328921, 20599, 4483, 1, 331577, 5417, 10739, 1, 43597, 5233, 4597, 1, 1, 2221, 1, 3259, 6659, 63803, 340957, 1, 5737, 1, 343661, 129127, 345017, 1, 1039127, 1, 1, 130657, 1, 1, 55337, 1, 1, 33049, 1, 1, 1, 1, 2389, 1,

6. Sequence of the polynom (only primes)

23, 3, 19, 31, 109, 17, 491, 13, 47, 281, 1031, 409, 83, 53, 73, 41, 179, 857, 337, 941, 3083, 67, 1117, 157, 3911, 467, 79, 97, 283, 1709, 661, 5783, 787, 719, 277, 6827, 461, 2521, 113, 2777, 2909, 397, 389, 3181, 10391, 401, 1381, 479, 617, 131, 4217, 13127, 557, 349, 433, 1567, 859, 619, 5209, 331, 521, 163, 5741, 1367, 149, 1163, 2099, 19463, 823, 21227, 383, 2767, 7481, 23063, 487, 3001, 24971, 811, 8761, 1109, 26951, 379, 9209, 9437, 199, 1223, 9901, 641, 1831, 3539, 4027, 10861, 1373, 709, 2153, 35591, 1499, 2297, 4127, 457, 1597, 13177, 40343, 13721, 5197, 13997, 14557, 1873, 3491, 571, 1459, 683, 991, 1171, 673, 16301, 1277, 17209, 5839, 677, 6047, 18457, 263, 19421, 59243, 1181, 7591, 6803, 643, 4787, 1307, 7027, 613, 691, 2699, 599, 22109, 2089, 1321, 1291, 547, 1481, 1747, 2693, 9157, 1549, 74903, 1949, 563, 4603, 821, 81671, 9203, 27997, 881, 6551, 1693, 10867, 1069, 1861, 967, 11317, 3823, 92363, 10399, 4177, 32441, 3061, 1933, 3221, 2593, 12721, 3793, 103703, 1087, 3889, 35437, 4457, 1579, 36761, 111623, 4679, 37657, 7103, 12703, 6089, 373, 13007, 359, 3037, 119831, 2377, 15241, 997, 761, 3217, 3943, 128327, 14419, 2039, 2749, 1297, 853, 947, 983, 17419, 5189, 5869, 1483, 3709, 8599, 1201, 9281, 49757, 150827, 6317, 17107, 1427, 3257, 1039, 2393, 2347, 2543, 54521, 6917, 55609, 18719, 3527, 170123, 419, 19087, 21577, 3631, 2399, 58937, 5813, 60637, 11423, 2267, 7687, 10903, 7759, 1279, 2659, 64109, 24151, 2087, 195863, 4099, 65881, 22159, 4211, 1327, 6373, 68281, 8573, 69497, 5393, 71341, 4517, 1061, 1571, 223403, 1429, 3169, 229127, 9587, 77017, 8629, 2437, 1063, 9829, 2287, 79609, 1249, 4259, 30469, 3547, 3413, 246731, 4877, 1951, 2143, 28307, 7993, 85597, 258827, 6689, 1723, 87641, 89017, 1759, 11257, 271211, 30367, 1319, 91801, 11519, 21347, 1123, 4943, 16699, 1423, 2111, 290327, 36697, 98221, 12323, 296843, 2069, 303431, 12689, 4793, 310091, 12967, 34703, 39181, 6577, 24371, 3079, 6301, 1493, 17033, 108637, 20441, 36467, 13723, 36979, 20873, 6367, 4703, 2137, 114041, 8893, 351563, 7349, 13109, 2897, 14897, 358727, 4999, 121181, 28151, 15299, 41203, 12041, 47119, 9697, 15809, 380651, 127709, 24023, 7561, 2381, 16223, 130201, 1289, 1409, 395627, 49927, 5807, 23719, 135257, 5689, 31607, 17389, 418631, 17497, 15601, 3301, 141277, 18541, 2339, 11069, 9241, 2269, 54787, 48847, 442283, 4621, 3803, 27893, 1439, 450311, 4871, 151901, 19157, 4447, 51539, 2423, 1889, 9749, 52147, 3461, 2969, 19727, 3307, 1871, 6691, 5821, 1553, 161977, 10211, 491531, 1999, 165721, 6329, 1741, 12893, 63031, 2309, 7043, 32051, 57139, 21487, 39779, 3041, 10253, 2731, 22861, 2441, 176237, 66271, 177209, 1489, 179161, 67369, 31963, 11351, 60703, 552263, 7691, 8699, 2549, 11941, 23447, 6067, 70717, 5879, 5527, 10111, 24077, 2017, 194141, 36497, 195161, 6211, 597803, 75307, 201337, 607127, 203417, 2467, 204461, 616523, 15889, 69203, 26017, 1601, 8849, 212909, 213977, 9629, 6737, 12713, 24133, 654827, 24373, 41231, 664583, 9679, 41843, 3389, 1657, 17377, 84919, 4451, 684311, 76403, 86161, 2113, 28859, 12239, 10159, 3253, 3187, 714443, 1697, 18493, 15061, 724631, 242681, 4801, 10067, 7673, 2011, 2383, 32401, 31123, 46901, 7853, 755627, 3203, 95107, 1901, 6257, 7417, 85903, 776651, 16217, 3769, 261241, 6967, 263609, 20369, 100417, 89459, 16811, 15259, 8443, 271981, 2621, 819563, 16141, 51563, 34679, 278041, 4019, 10343, 4373, 105871, 9127, 8861, 6961, 11969, 37549, 2207, 96787, 36373, 874823, 36529, 13757, 4111, 22817, 297881, 2663, 100559, 69911, 4409, 4397, 305497, 2251, 22447, 12809, 18121, 57881, 3727, 3229, 931883, 2677, 943511, 19697, 35089, 118669, 39719, 955211, 24593, 15017, 321017, 31193, 323641, 30403, 5701, 10091, 40867, 109199, 328921, 20599, 4483, 331577, 5417, 10739, 43597, 5233, 4597, 2221, 3259, 6659, 63803, 340957, 5737, 343661, 129127, 345017, 1039127, 130657, 55337, 33049, 2389,

7. Distribution of the primes

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

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)
1109360.9000000.3000000.9000000.0000000.0000000.000000
21005710470.5700000.1000000.5700006.3333333.3333337.833333
31.000588625260.5880000.0620000.58800010.3157896.20000011.191489
410.0006.1844095.7750.6184000.0409000.61840010.5170076.59677410.979088
5100.00063.4983.36060.1380.6349800.0336000.63498010.2681118.21515810.413507
61.000.000645.87427.582618.2920.6458740.0275820.64587410.1715648.20892810.281219
710.000.0006.526.169233.6136.292.5560.6526170.0233610.65261710.1044008.46976310.177320
8100.000.00065.786.4232.017.01763.769.4060.6578640.0201700.65786410.0804048.63401010.134103
91.000.000.000661.857.52317.814.511644.043.0120.6618580.0178150.66185810.0607018.83210810.099561
1010.000.000.0006.650.366.591159.411.6806.490.954.9110.6650370.0159410.66503710.0480338.94841710.078449


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
245231.2500000.5000000.7500001.6666671.0000003.000000
387340.8750000.3750000.5000001.4000001.5000001.333333
41613490.8125000.2500000.5625001.8571431.3333332.250000
532215160.6562500.1562500.5000001.6153851.2500001.777778
664378290.5781250.1250000.4531251.7619051.6000001.812500
71287014560.5468750.1093750.4375001.8918921.7500001.931034
8256145201250.5664060.0781250.4882812.0714291.4285712.232143
9512298352630.5820310.0683590.5136722.0551721.7500002.104000
101.024605645410.5908200.0625000.5283202.0302011.8285712.057034
112.0481.2371131.1240.6040040.0551760.5488282.0446281.7656252.077634
124.0962.5092002.3090.6125490.0488280.5637212.0282941.7699122.054271
138.1925.0513444.7070.6165770.0419920.5745852.0131531.7200002.038545
1416.38410.2306499.5810.6243900.0396120.5847782.0253421.8866282.035479
1532.76820.5621.20719.3550.6275020.0368350.5906682.0099711.8597842.020144
1665.53641.4602.26639.1940.6326290.0345760.5980532.0163411.8773822.025007
17131.07283.4504.25879.1920.6366730.0324860.6041872.0127831.8790822.020513
18262.144167.7158.068159.6470.6397820.0307770.6090052.0097661.8947862.015949
19524.288337.31315.201322.1120.6433730.0289940.6143802.0112271.8841102.017652
201.048.576677.50028.791648.7090.6461140.0274570.6186572.0085201.8940202.013924
212.097.1521.359.63654.7461.304.8900.6483250.0261050.6222202.0068431.9014972.011518
224.194.3042.727.669103.8692.623.8000.6503270.0247640.6255632.0061761.8972892.010744
238.388.6085.470.371198.2595.272.1120.6521190.0236340.6284852.0055111.9087412.009342
2416.777.21610.971.031378.23310.592.7980.6539240.0225440.6313802.0055371.9077722.009213
2533.554.43221.997.347722.75721.274.5900.6555720.0215400.6340322.0050391.9108782.008401
2667.108.86444.094.0121.385.28242.708.7300.6570520.0206420.6364102.0045151.9166642.007499
27134.217.72888.372.9582.662.05685.710.9020.6584300.0198340.6385962.0041941.9216712.006871
28268.435.456177.081.3295.123.351171.957.9780.6596790.0190860.6405932.0037951.9245842.006256
29536.870.912354.803.3449.873.366344.929.9780.6608730.0183910.6424822.0036181.9271302.005897
301.073.741.824710.781.48719.058.317691.723.1700.6619670.0177490.6442172.0033111.9302752.005402
312.147.483.6481.423.757.55136.815.7851.386.941.7660.6629890.0171440.6458452.0030881.9317442.005053
324.294.967.2962.851.623.97771.208.2122.780.415.7650.6639450.0165790.6473662.0028861.9341762.004710
338.589.934.5925.710.985.646137.889.9025.573.095.7440.6648460.0160520.6487942.0027131.9364332.004411
3417.179.869.18411.436.523.442267.291.83411.169.231.6080.6656930.0155580.6501352.0025481.9384442.004134


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
383020201
4164030202
5325040302
6648070404
7128140130608
82562001907013
951235034015020
101.02464063031033
112.0481130112054059
124.09620001990970103
138.192344034301670177
1416.384649064803200329
1532.7681.20701.20605950612
1665.5362.26602.26501.13101.135
17131.0724.25804.25702.11502.143
18262.1448.06808.06704.04504.023
19524.28815.201015.20007.60207.599
201.048.57628.791028.790014.371014.420
212.097.15254.746054.745027.404027.342
224.194.304103.8690103.868051.932051.937
238.388.608198.2590198.258099.316098.943
2416.777.216378.2330378.2320189.3950188.838
2533.554.432722.7570722.7560361.3810361.376
2667.108.8641.385.28201.385.2810692.4700692.812
27134.217.7282.662.05602.662.05501.331.05601.331.000
28268.435.4565.123.35105.123.35002.561.91102.561.440
29536.870.9129.873.36609.873.36504.937.72504.935.641
301.073.741.82419.058.317019.058.31609.530.53009.527.787
312.147.483.64836.815.785036.815.784018.409.353018.406.432
324.294.967.29671.208.212071.208.211035.603.916035.604.296
338.589.934.592137.889.9020137.889.901068.945.187068.944.715
3417.179.869.184267.291.8340267.291.8330133.648.8890133.642.945


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
121000100
243200111
384211111
4169353222
53216687342
664291314106103
712856272718111710
8256125636033344018
951226314711472577658
101.024541281258163115147116
112.0481.124578544312260303249
124.0962.3091.1911.116608540622539
138.1924.7072.4052.3001.2581.1131.2531.083
1416.3849.5814.8624.7172.5472.2702.5682.196
1532.76819.3559.8149.5395.1244.5605.1734.498
1665.53639.19419.93919.25310.3109.27110.5129.101
17131.07279.19240.35438.83620.80018.75421.01418.624
18262.144159.64781.23278.41341.81038.08342.03437.720
19524.288322.112163.959158.15184.52776.76284.48876.335
201.048.576648.709329.590319.117169.382155.103169.830154.394
212.097.1521.304.890662.630642.258340.340312.164340.842311.544
224.194.3042.623.8001.331.0521.292.746682.073629.884683.323628.520
238.388.6085.272.1122.671.5442.600.5661.367.9401.268.1011.369.3621.266.709
2416.777.21610.592.7985.363.5555.229.2412.744.4192.550.8862.746.1922.551.301
2533.554.43221.274.59010.766.05010.508.5385.504.3045.132.9695.504.7485.132.569
2667.108.86442.708.73021.596.25821.112.47011.032.48210.322.48311.033.35010.320.415
27134.217.72885.710.90243.321.80942.389.09122.108.86020.746.69622.109.75620.745.590
28268.435.456171.957.97886.865.85785.092.11944.299.57141.676.16744.307.29141.674.949
29536.870.912344.929.978174.161.801170.768.17588.756.54883.703.77488.769.54783.700.109
301.073.741.824691.723.170349.120.517342.602.651177.809.898168.048.020177.815.676168.049.576
312.147.483.6481.386.941.766699.744.686687.197.078356.151.545337.316.737356.166.319337.307.165
324.294.967.2962.780.415.7651.402.350.5391.378.065.224713.312.823676.902.532713.326.101676.874.309
338.589.934.5925.573.095.7442.810.042.0032.763.053.7391.428.504.7151.358.042.4191.428.530.1291.358.018.481
3417.179.869.18411.169.231.6085.630.095.7355.539.135.8712.860.527.5312.724.091.1562.860.593.1532.724.019.768


8. Check for existing Integer Sequences by OEIS

Found in Database : 23, 3, 19, 31, 109, 17, 491, 1, 13, 47, 281, 1, 1031, 1, 409, 83, 53, 1, 1, 73,
Found in Database : 23, 3, 19, 31, 109, 17, 491, 13, 47, 281, 1031, 409, 83, 53, 73, 41, 179, 857, 337, 941, 3083, 67, 1117, 157, 3911, 467,
Found in Database : 3, 13, 17, 19, 23, 31, 41, 47, 53, 67, 73, 79, 83, 97, 109, 113, 131, 149,