Inhaltsverzeichnis

Development of
Algorithmic Constructions

10:47:06
Deutsch
19.Apr 2024

Polynom = x^2+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) = 27 = 3*3*3
f(3) = 1 = 1
f(4) = 39 = 3*13
f(5) = 3 = 3
f(6) = 59 = 59
f(7) = 9 = 3*3
f(8) = 87 = 3*29
f(9) = 13 = 13
f(10) = 123 = 3*41
f(11) = 9 = 3*3
f(12) = 167 = 167
f(13) = 3 = 3
f(14) = 219 = 3*73
f(15) = 31 = 31
f(16) = 279 = 3*3*31
f(17) = 39 = 3*13
f(18) = 347 = 347
f(19) = 3 = 3
f(20) = 423 = 3*3*47
f(21) = 29 = 29
f(22) = 507 = 3*13*13
f(23) = 69 = 3*23
f(24) = 599 = 599
f(25) = 81 = 3*3*3*3
f(26) = 699 = 3*233
f(27) = 47 = 47
f(28) = 807 = 3*269
f(29) = 27 = 3*3*3
f(30) = 923 = 13*71
f(31) = 123 = 3*41
f(32) = 1047 = 3*349
f(33) = 139 = 139
f(34) = 1179 = 3*3*131
f(35) = 39 = 3*13
f(36) = 1319 = 1319
f(37) = 87 = 3*29
f(38) = 1467 = 3*3*163
f(39) = 193 = 193
f(40) = 1623 = 3*541
f(41) = 213 = 3*71
f(42) = 1787 = 1787
f(43) = 117 = 3*3*13
f(44) = 1959 = 3*653
f(45) = 1 = 1
f(46) = 2139 = 3*23*31
f(47) = 279 = 3*3*31
f(48) = 2327 = 13*179
f(49) = 303 = 3*101
f(50) = 2523 = 3*29*29
f(51) = 41 = 41
f(52) = 2727 = 3*3*3*101
f(53) = 177 = 3*59
f(54) = 2939 = 2939
f(55) = 381 = 3*127
f(56) = 3159 = 3*3*3*3*3*13
f(57) = 409 = 409
f(58) = 3387 = 3*1129
f(59) = 219 = 3*73
f(60) = 3623 = 3623
f(61) = 117 = 3*3*13
f(62) = 3867 = 3*1289
f(63) = 499 = 499
f(64) = 4119 = 3*1373
f(65) = 531 = 3*3*59
f(66) = 4379 = 29*151
f(67) = 141 = 3*47
f(68) = 4647 = 3*1549
f(69) = 299 = 13*23
f(70) = 4923 = 3*3*547
f(71) = 633 = 3*211
f(72) = 5207 = 41*127
f(73) = 669 = 3*223
f(74) = 5499 = 3*3*13*47
f(75) = 353 = 353
f(76) = 5799 = 3*1933
f(77) = 93 = 3*31
f(78) = 6107 = 31*197
f(79) = 783 = 3*3*3*29
f(80) = 6423 = 3*2141
f(81) = 823 = 823
f(82) = 6747 = 3*13*173
f(83) = 27 = 3*3*3
f(84) = 7079 = 7079
f(85) = 453 = 3*151
f(86) = 7419 = 3*2473
f(87) = 949 = 13*73
f(88) = 7767 = 3*3*863
f(89) = 993 = 3*331
f(90) = 8123 = 8123
f(91) = 519 = 3*173
f(92) = 8487 = 3*3*23*41
f(93) = 271 = 271
f(94) = 8859 = 3*2953
f(95) = 1131 = 3*13*29
f(96) = 9239 = 9239
f(97) = 1179 = 3*3*131
f(98) = 9627 = 3*3209
f(99) = 307 = 307
f(100) = 10023 = 3*13*257

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

f(0)=23
f(1)=3
f(2)=1
f(3)=1
f(4)=13
f(5)=1
f(6)=59
f(7)=1
f(8)=29
f(9)=1
f(10)=41
f(11)=1
f(12)=167
f(13)=1
f(14)=73
f(15)=31
f(16)=1
f(17)=1
f(18)=347
f(19)=1
f(20)=47
f(21)=1
f(22)=1
f(23)=1
f(24)=599
f(25)=1
f(26)=233
f(27)=1
f(28)=269
f(29)=1
f(30)=71
f(31)=1
f(32)=349
f(33)=139
f(34)=131
f(35)=1
f(36)=1319
f(37)=1
f(38)=163
f(39)=193
f(40)=541
f(41)=1
f(42)=1787
f(43)=1
f(44)=653
f(45)=1
f(46)=1
f(47)=1
f(48)=179
f(49)=101
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=2939
f(55)=127
f(56)=1
f(57)=409
f(58)=1129
f(59)=1
f(60)=3623
f(61)=1
f(62)=1289
f(63)=499
f(64)=1373
f(65)=1
f(66)=151
f(67)=1
f(68)=1549
f(69)=1
f(70)=547
f(71)=211
f(72)=1
f(73)=223
f(74)=1
f(75)=353
f(76)=1933
f(77)=1
f(78)=197
f(79)=1
f(80)=2141
f(81)=823
f(82)=173
f(83)=1
f(84)=7079
f(85)=1
f(86)=2473
f(87)=1
f(88)=863
f(89)=331
f(90)=8123
f(91)=1
f(92)=1
f(93)=271
f(94)=2953
f(95)=1
f(96)=9239
f(97)=1
f(98)=3209
f(99)=307

b) Substitution of the polynom
The polynom f(x)=x^2+23 could be written as f(y)= y^2+23 with x=y+0

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+0
f'(x)>2x-1 with x > 5

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, 1, 1, 13, 1, 59, 1, 29, 1, 41, 1, 167, 1, 73, 31, 1, 1, 347, 1, 47, 1, 1, 1, 599, 1, 233, 1, 269, 1, 71, 1, 349, 139, 131, 1, 1319, 1, 163, 193, 541, 1, 1787, 1, 653, 1, 1, 1, 179, 101, 1, 1, 1, 1, 2939, 127, 1, 409, 1129, 1, 3623, 1, 1289, 499, 1373, 1, 151, 1, 1549, 1, 547, 211, 1, 223, 1, 353, 1933, 1, 197, 1, 2141, 823, 173, 1, 7079, 1, 2473, 1, 863, 331, 8123, 1, 1, 271, 2953, 1, 9239, 1, 3209, 307, 257, 1, 10427, 443, 3613, 1381, 1, 239, 1, 1, 449, 1543, 1, 1, 277, 1, 4493, 857, 4649, 1, 14423, 1, 4969, 947, 1, 1, 1223, 673, 1823, 2083, 5641, 1, 1, 1, 461, 2281, 6173, 1, 829, 1, 1, 311, 2243, 853, 20759, 877, 2371, 1, 7309, 463, 1, 317, 593, 1, 1, 1, 24359, 1, 8329, 3163, 1, 1, 26267, 1, 997, 1, 1, 1163, 601, 397, 1, 1, 1, 1, 739, 1277, 10333, 3919, 1, 1, 32423, 683, 1, 1, 491, 1427, 2663, 1, 11789, 1117, 12041, 1, 36887, 1553, 12553, 1, 4271, 809, 39227, 1, 4447, 1, 439, 859, 3203, 1, 14153, 1, 1, 607, 44123, 1, 1153, 2837, 1697, 1, 46679, 1, 587, 2999, 16141, 509, 49307, 691, 577, 487, 17033, 1, 1, 1093, 1, 6673, 1, 1, 54779, 1151, 1, 1, 1453, 2381, 1987, 1, 1, 1, 19853, 1, 60539, 2543, 20509, 7753, 6947, 1, 63527, 1, 1, 1, 1, 2753, 66587, 1, 22541, 4259, 1, 1, 1, 2927, 23593, 4457, 887, 1, 72923, 3061, 2741, 9319, 25033, 1, 3313, 1, 1, 9733, 26141, 1097, 1, 1669, 26893, 2539, 9091, 3433, 1, 1, 719, 2647, 28429, 1789, 2789, 1, 1, 1, 1021, 1, 90023, 1, 647, 883, 10271, 3877, 1283, 1, 811, 1, 1, 1, 97367, 1361, 1, 6203, 1, 1, 2467, 4241, 34141, 991, 1, 1087, 104999, 1, 1, 1, 35869, 1, 108923, 761, 36749, 1733, 2861, 1559, 112919, 4733, 929, 1, 1, 2423, 8999, 4903, 13151, 1, 1, 1, 2053, 1, 40841, 1, 1, 1, 125339, 1, 1, 1, 14243, 1, 1, 5431, 14563, 8237, 1, 1, 133979, 1871, 1, 1, 45641, 1, 138407, 1, 46633, 17581, 5237, 5923, 142907, 1, 1783, 1, 48649, 6113, 1061, 1, 3821, 1, 1619, 1051, 152123, 1, 51229, 19309, 1327, 3251, 1, 821, 1, 1531, 1301, 6701, 161627, 1, 54413, 10253, 1, 1, 166487, 6971, 56041, 10559, 1451, 1777, 1, 7177, 19231, 21739, 1879, 1, 1, 1231, 59369, 22369, 1, 1, 181499, 1, 1, 1, 1, 7741, 186647, 1, 6977, 2957, 1, 1, 14759, 2677, 1, 1, 65129, 1, 197159, 2063, 5101, 24979, 22303, 1, 1, 1, 1, 1, 68713, 8627, 1, 967, 69929, 1013, 3067, 1, 213467, 8933, 5521, 27031, 1, 1, 1, 4583, 24547, 27733, 1, 9323, 224699, 1567, 75533, 1, 1291, 3187, 7433, 1, 1889, 1, 8677, 1, 236219, 9883, 8821, 1, 1, 5023, 1039, 1, 81353, 30631, 82013, 1, 19079, 1297, 83341, 1, 1, 1, 254039, 10627, 1237, 16067, 86029, 2699, 1, 1, 2819, 1, 3037, 1, 20483, 5569, 89449, 1, 30047, 11311, 272507, 1, 2347, 1, 92233, 1, 278807, 1, 3229, 2203, 94349, 1973, 285179, 11927, 95773, 1, 1, 6053, 1511, 3049, 1, 1, 2099, 12377, 1, 1, 100109, 18839, 7757, 4217, 13249, 12743, 1, 1481, 34351, 1, 2377, 1, 34847, 39343, 1, 1, 7759, 1, 1, 40189, 8273, 1499, 4451, 6793, 3761, 1, 1181, 1, 25523, 13873, 37123, 10477, 1, 1, 338747, 4721, 1, 1, 114473, 2393, 11923, 1, 116041, 1, 4327, 14653, 27143, 1, 1, 22277, 1, 14951, 360023, 1, 9293, 22727, 3923, 1, 367259, 1, 123229, 1, 1, 3889, 1, 7829, 1, 3637, 126493, 1, 1979, 1, 9857, 1, 128969, 1, 389399, 1, 130633, 6143, 3371, 8243, 13687, 1, 44383, 3853, 133993, 1, 13049, 1409, 2887, 51043, 136541, 1, 412187, 1, 6011, 26003, 1, 17443, 419927, 17551, 15649, 26489, 141709, 2221, 2531, 1, 1, 53959, 1429, 1, 435623, 9103, 1, 54949, 48991, 18427, 1, 1, 1, 1, 1, 1, 34739, 1, 151433, 1, 1, 1, 9781, 19211, 1, 57973, 51683, 9719, 467879, 1, 52291, 1439, 5441, 1, 1, 1, 159629, 2309, 160553, 6709, 484439, 1, 1, 30539, 18149, 5119, 8353, 20593, 1, 62131, 12781, 1, 501287, 3491, 1, 4861, 1, 1, 8641, 10651, 2341, 1, 57283, 1657, 1913, 21661, 57923, 1, 13441, 1, 527099, 2447, 1, 2143, 1, 1, 1, 1, 179593, 67531, 2617, 1741, 544667, 5689, 1, 34319, 1, 23003, 7583, 1, 6397, 34877, 4549, 1, 43271, 1, 1, 70879, 7019, 2969, 5659, 11939, 1637, 1, 6211, 1, 20023, 1, 1, 18289, 195593, 8171, 589847, 1, 197641, 1, 1, 1, 3463, 1, 5147, 1, 201769, 1, 608423, 1, 8863, 1, 15761, 1, 617819, 1613, 1, 1, 2237, 1, 2017, 26203, 70051, 39503, 211213, 1, 1, 8867, 1, 1, 16493, 2239, 22291, 1, 216553, 81409, 24181, 27271, 1, 1, 24421, 1, 220873, 2129, 1, 1, 223049, 1, 1, 1, 1, 1, 1, 85081, 1, 14249, 2293, 7159, 1867, 86323, 3911, 1, 5477, 1, 17921, 43787, 234089, 3259, 4673, 2267, 236329, 44417, 79151, 3719, 715739, 1, 79903, 1, 240841, 1, 23417, 1, 18701, 91381, 244253, 1, 736187, 15373, 2441, 23167, 1, 31033, 1, 31177, 1, 1, 251149, 15733, 756923, 1, 253469, 2027, 11071, 1, 767399, 2003, 8861, 1, 6619, 32341, 10957, 1, 2801, 48953, 261673, 32783, 60659, 3659, 3617, 1, 6469, 1, 799259, 33377, 267613, 4373, 89603, 8419, 810023, 1, 90403, 101929, 1, 34127, 1, 1, 274829, 12911, 276041, 11527, 20287, 1, 1, 1, 1, 17519, 842747, 2707, 1, 106033, 283369, 17749, 853799, 2971, 1, 8263, 1, 11987, 1, 9029, 22273, 1, 96931, 1, 30211, 36583, 1, 55109, 1, 1, 887387, 1, 2339, 1, 9623, 1, 898727, 1, 5099, 1, 100703, 1, 910139, 19001, 1, 28621, 1, 38321, 19609, 1, 308489, 1, 4363, 1, 3121, 1, 312349, 117373, 34849, 1, 6257, 4931, 1, 118831, 10243, 1, 32983, 1, 320141, 60149, 321449, 13421, 1, 40427, 324073, 60887, 108463, 1, 5869, 1, 1, 123259, 1, 10313, 1, 1, 332009, 124753,

6. Sequence of the polynom (only primes)

23, 3, 13, 59, 29, 41, 167, 73, 31, 347, 47, 599, 233, 269, 71, 349, 139, 131, 1319, 163, 193, 541, 1787, 653, 179, 101, 2939, 127, 409, 1129, 3623, 1289, 499, 1373, 151, 1549, 547, 211, 223, 353, 1933, 197, 2141, 823, 173, 7079, 2473, 863, 331, 8123, 271, 2953, 9239, 3209, 307, 257, 10427, 443, 3613, 1381, 239, 449, 1543, 277, 4493, 857, 4649, 14423, 4969, 947, 1223, 673, 1823, 2083, 5641, 461, 2281, 6173, 829, 311, 2243, 853, 20759, 877, 2371, 7309, 463, 317, 593, 24359, 8329, 3163, 26267, 997, 1163, 601, 397, 739, 1277, 10333, 3919, 32423, 683, 491, 1427, 2663, 11789, 1117, 12041, 36887, 1553, 12553, 4271, 809, 39227, 4447, 439, 859, 3203, 14153, 607, 44123, 1153, 2837, 1697, 46679, 587, 2999, 16141, 509, 49307, 691, 577, 487, 17033, 1093, 6673, 54779, 1151, 1453, 2381, 1987, 19853, 60539, 2543, 20509, 7753, 6947, 63527, 2753, 66587, 22541, 4259, 2927, 23593, 4457, 887, 72923, 3061, 2741, 9319, 25033, 3313, 9733, 26141, 1097, 1669, 26893, 2539, 9091, 3433, 719, 2647, 28429, 1789, 2789, 1021, 90023, 647, 883, 10271, 3877, 1283, 811, 97367, 1361, 6203, 2467, 4241, 34141, 991, 1087, 104999, 35869, 108923, 761, 36749, 1733, 2861, 1559, 112919, 4733, 929, 2423, 8999, 4903, 13151, 2053, 40841, 125339, 14243, 5431, 14563, 8237, 133979, 1871, 45641, 138407, 46633, 17581, 5237, 5923, 142907, 1783, 48649, 6113, 1061, 3821, 1619, 1051, 152123, 51229, 19309, 1327, 3251, 821, 1531, 1301, 6701, 161627, 54413, 10253, 166487, 6971, 56041, 10559, 1451, 1777, 7177, 19231, 21739, 1879, 1231, 59369, 22369, 181499, 7741, 186647, 6977, 2957, 14759, 2677, 65129, 197159, 2063, 5101, 24979, 22303, 68713, 8627, 967, 69929, 1013, 3067, 213467, 8933, 5521, 27031, 4583, 24547, 27733, 9323, 224699, 1567, 75533, 1291, 3187, 7433, 1889, 8677, 236219, 9883, 8821, 5023, 1039, 81353, 30631, 82013, 19079, 1297, 83341, 254039, 10627, 1237, 16067, 86029, 2699, 2819, 3037, 20483, 5569, 89449, 30047, 11311, 272507, 2347, 92233, 278807, 3229, 2203, 94349, 1973, 285179, 11927, 95773, 6053, 1511, 3049, 2099, 12377, 100109, 18839, 7757, 4217, 13249, 12743, 1481, 34351, 2377, 34847, 39343, 7759, 40189, 8273, 1499, 4451, 6793, 3761, 1181, 25523, 13873, 37123, 10477, 338747, 4721, 114473, 2393, 11923, 116041, 4327, 14653, 27143, 22277, 14951, 360023, 9293, 22727, 3923, 367259, 123229, 3889, 7829, 3637, 126493, 1979, 9857, 128969, 389399, 130633, 6143, 3371, 8243, 13687, 44383, 3853, 133993, 13049, 1409, 2887, 51043, 136541, 412187, 6011, 26003, 17443, 419927, 17551, 15649, 26489, 141709, 2221, 2531, 53959, 1429, 435623, 9103, 54949, 48991, 18427, 34739, 151433, 9781, 19211, 57973, 51683, 9719, 467879, 52291, 1439, 5441, 159629, 2309, 160553, 6709, 484439, 30539, 18149, 5119, 8353, 20593, 62131, 12781, 501287, 3491, 4861, 8641, 10651, 2341, 57283, 1657, 1913, 21661, 57923, 13441, 527099, 2447, 2143, 179593, 67531, 2617, 1741, 544667, 5689, 34319, 23003, 7583, 6397, 34877, 4549, 43271, 70879, 7019, 2969, 5659, 11939, 1637, 6211, 20023, 18289, 195593, 8171, 589847, 197641, 3463, 5147, 201769, 608423, 8863, 15761, 617819, 1613, 2237, 2017, 26203, 70051, 39503, 211213, 8867, 16493, 2239, 22291, 216553, 81409, 24181, 27271, 24421, 220873, 2129, 223049, 85081, 14249, 2293, 7159, 1867, 86323, 3911, 5477, 17921, 43787, 234089, 3259, 4673, 2267, 236329, 44417, 79151, 3719, 715739, 79903, 240841, 23417, 18701, 91381, 244253, 736187, 15373, 2441, 23167, 31033, 31177, 251149, 15733, 756923, 253469, 2027, 11071, 767399, 2003, 8861, 6619, 32341, 10957, 2801, 48953, 261673, 32783, 60659, 3659, 3617, 6469, 799259, 33377, 267613, 4373, 89603, 8419, 810023, 90403, 101929, 34127, 274829, 12911, 276041, 11527, 20287, 17519, 842747, 2707, 106033, 283369, 17749, 853799, 2971, 8263, 11987, 9029, 22273, 96931, 30211, 36583, 55109, 887387, 2339, 9623, 898727, 5099, 100703, 910139, 19001, 28621, 38321, 19609, 308489, 4363, 3121, 312349, 117373, 34849, 6257, 4931, 118831, 10243, 32983, 320141, 60149, 321449, 13421, 40427, 324073, 60887, 108463, 5869, 123259, 10313, 332009, 124753,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2x+23 and
the reducible primes which appear as divisor for the first time
p | x^2x+23 and p < x^2x+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)
1106330.6000000.3000000.6000000.0000000.0000000.000000
21005622340.5600000.2200000.5600009.3333337.33333311.333333
31.0006171624550.6170000.1620000.61700011.0178587.36363613.382353
410.0006.4141.1005.3140.6414000.1100000.64140010.3954626.79012311.679121
5100.00065.2978.51656.7810.6529700.0851600.65297010.1803877.74181810.685171
61.000.000660.43468.153592.2810.6604340.0681530.66043410.1143088.00293510.430972
710.000.0006.652.372570.3606.082.0120.6652370.0570360.66523710.0727288.36881710.268795
8100.000.00066.872.0634.913.43061.958.6330.6687210.0491340.66872110.0523648.61461210.187193
91.000.000.000671.424.33243.127.669628.296.6630.6714240.0431280.67142410.0404318.77750810.140583
1010.000.000.0006.735.904.494384.271.1196.351.633.3750.6735900.0384270.67359010.0322618.91008310.109291


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)
122201.0000001.0000000.0000000.0000000.0000000.000000
243210.7500000.5000000.2500001.5000001.000000inf
385320.6250000.3750000.2500001.6666671.5000002.000000
4169540.5625000.3125000.2500001.8000001.6666672.000000
53216790.5000000.2187500.2812501.7777781.4000002.250000
6643415190.5312500.2343750.2968752.1250002.1428572.111111
71287328450.5703120.2187500.3515622.1470591.8666672.368421
825614950990.5820310.1953120.3867192.0410961.7857142.200000
9512308922160.6015620.1796880.4218752.0671141.8400002.181818
101.0246301654650.6152340.1611330.4541022.0454551.7934782.152778
112.0481.2872889990.6284180.1406250.4877932.0428571.7454552.148387
124.0962.5985152.0830.6342770.1257320.5085452.0186481.7881942.085085
138.1925.2549284.3260.6413570.1132810.5280762.0223251.8019422.076812
1416.38410.5881.6918.8970.6462400.1032100.5430302.0152271.8221982.056634
1532.76821.2603.12818.1320.6488040.0954590.5533452.0079341.8497932.037990
1665.53642.7145.85036.8640.6517640.0892640.5625002.0091251.8702052.033091
17131.07285.85710.86374.9940.6550370.0828780.5721592.0100441.8569232.034343
18262.144172.23020.261151.9690.6570050.0772900.5797162.0060101.8651392.026415
19524.288345.32737.937307.3900.6586590.0723590.5863002.0050341.8724152.022715
201.048.576692.56671.198621.3680.6604820.0679000.5925832.0055371.8767432.021432
212.097.1521.388.801134.4351.254.3660.6622320.0641040.5981282.0052981.8881852.018717
224.194.3042.783.579254.8652.528.7140.6636570.0607650.6028922.0043041.8958232.015930
238.388.6085.578.149484.5725.093.5770.6649670.0577650.6072022.0039481.9012892.014295
2416.777.21611.175.797923.57110.252.2260.6661290.0550490.6110802.0034961.9059522.012775
2533.554.43222.387.3621.764.73920.622.6230.6671950.0525930.6146022.0032011.9107782.011527
2667.108.86444.840.4003.378.76941.461.6310.6681740.0503480.6178262.0029341.9146002.010493
27134.217.72889.805.0796.479.30183.325.7780.6691000.0482750.6208252.0027721.9176512.009708
28268.435.456179.839.55312.445.781167.393.7720.6699550.0463640.6235902.0025541.9208522.008908
29536.870.912360.108.60623.944.541336.164.0650.6707550.0446000.6261542.0023881.9239082.008223
301.073.741.824721.020.35546.134.848674.885.5070.6715030.0429660.6285362.0022301.9267382.007607
312.147.483.6481.443.527.98988.999.2161.354.528.7730.6721950.0414430.6307522.0020631.9291102.007050
324.294.967.2962.889.874.837171.906.8512.717.967.9860.6728510.0400250.6328262.0019531.9315552.006578
338.589.934.5925.784.984.861332.469.5265.452.515.3350.6734610.0387050.6347562.0018121.9340102.006100
3417.179.869.18411.579.861.632643.691.61710.936.170.0150.6740370.0374680.6365692.0017101.9360922.005711
3534.359.738.36823.178.413.0141.247.566.33021.930.846.6840.6745810.0363090.6382722.0016141.9381432.005350
3668.719.476.73646.392.174.7442.420.274.29943.971.900.4450.6750950.0352200.6398752.0015251.9399962.005025


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
4165130203
5327150304
66415592706
7128281017411112
8256501732719321
95129229629371135
101.0241655411019632261
112.048288971903810938103
124.0965151763386818870189
138.192928329598116348125339
1416.3841.6916161.074227628226610
1532.7683.1281.1371.9904211.1754101.122
1665.5365.8502.0953.7547822.1937672.108
17131.07210.8633.8567.0061.4294.0341.4183.982
18262.14420.2617.13313.1272.6977.4832.6547.427
19524.28837.93713.22724.7095.01314.0684.92313.933
201.048.57671.19824.88946.3089.43326.2659.22826.272
212.097.152134.43546.86387.57117.73349.59817.56949.535
224.194.304254.86588.707166.15733.45594.02533.35594.030
238.388.608484.572168.111316.46063.633178.92163.410178.608
2416.777.216923.571319.745603.825120.770341.217120.813340.771
2533.554.4321.764.739610.0011.154.737230.555652.156230.597651.431
2667.108.8643.378.7691.166.4052.212.363440.6151.249.284440.6541.248.216
27134.217.7286.479.3012.233.2084.246.092844.1482.396.721843.0102.395.422
28268.435.45612.445.7814.283.5658.162.2151.618.2604.607.1301.616.4514.603.940
29536.870.91223.944.5418.230.74515.713.7953.107.7718.867.4263.107.0598.862.285
301.073.741.82446.134.84815.841.77030.293.0775.978.86617.088.7575.979.74217.087.483
312.147.483.64888.999.21630.530.71858.468.49711.522.45632.979.86711.521.62232.975.271
324.294.967.296171.906.85158.917.671112.989.17922.229.30163.728.24122.227.48163.721.828
338.589.934.592332.469.526113.852.391218.617.13442.942.835123.299.95842.937.782123.288.951
3417.179.869.184643.691.617220.237.653423.453.96383.042.726238.808.64683.047.348238.792.897
3534.359.738.3681.247.566.330426.513.313821.053.016160.803.594463.000.871160.793.137462.968.728
3668.719.476.7362.420.274.299826.814.3761.593.459.922311.674.809898.490.969311.658.332898.450.189


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
120000000
241100010
382110020
4164222020
5329363042
664197125383
7128452025137169
825699475226203518
951221610611054447246
101.02446523123412910513596
112.048999510489276221277225
124.0962.0831.0651.018574463586460
138.1924.3262.1792.1471.1749671.205980
1416.3848.8974.4424.4552.4272.0072.4771.986
1532.76818.1329.0179.1154.8994.1814.9384.114
1665.53636.86418.41918.4459.9258.5889.8808.471
17131.07274.99437.56337.43119.96417.41320.21117.406
18262.144151.96976.11275.85740.36835.59240.61335.396
19524.288307.390153.906153.48481.59072.17981.49172.130
201.048.576621.368311.380309.988164.213146.646163.922146.587
212.097.1521.254.366628.164626.202329.826297.158330.061297.321
224.194.3042.528.7141.266.0411.262.673663.186600.804663.536601.188
238.388.6085.093.5772.551.3822.542.1951.332.5601.214.1161.332.6851.214.216
2416.777.21610.252.2265.133.9145.118.3122.675.5672.451.2252.675.5192.449.915
2533.554.43220.622.62310.323.94710.298.6765.371.8644.940.9425.370.6354.939.182
2667.108.86441.461.63120.754.21020.707.42110.781.4949.954.61810.777.2109.948.309
27134.217.72883.325.77841.705.58041.620.19821.626.69420.038.05321.626.36620.034.665
28268.435.456167.393.77283.781.74783.612.02543.374.31140.319.47143.375.86440.324.126
29536.870.912336.164.065168.230.372167.933.69386.979.28181.095.68486.985.30781.103.793
301.073.741.824674.885.507337.726.076337.159.431174.372.235163.037.197174.407.119163.068.956
312.147.483.6481.354.528.773677.842.563676.686.210349.565.202327.668.831349.597.453327.697.287
324.294.967.2962.717.967.9861.360.087.8911.357.880.095700.646.384658.331.897700.637.821658.351.884
338.589.934.5925.452.515.3352.728.391.4702.724.123.8651.404.090.4271.322.167.3161.404.058.8571.322.198.735
3417.179.869.18410.936.170.0155.472.159.0215.464.010.9942.813.391.5692.654.710.9112.813.360.2782.654.707.257
3534.359.738.36821.930.846.68410.973.367.45410.957.479.2305.636.610.9455.328.808.4285.636.593.1125.328.834.199
3668.719.476.73643.971.900.44522.001.429.47721.970.470.96811.291.635.37910.694.244.49111.291.669.08510.694.351.490


8. Check for existing Integer Sequences by OEIS

Found in Database : 23, 3, 1, 1, 13, 1, 59, 1, 29, 1, 41, 1, 167, 1, 73, 31, 1, 1, 347, 1,
Found in Database : 23, 3, 13, 59, 29, 41, 167, 73, 31, 347, 47, 599, 233, 269, 71, 349, 139, 131, 1319, 163, 193,
Found in Database : 3, 13, 23, 29, 31, 41, 47, 59, 71, 73, 101, 127, 131, 139,