Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:26:58
Deutsch
20.Apr 2024

Polynom = x^2-12x+5

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) = 5 = 5
f(1) = 3 = 3
f(2) = 15 = 3*5
f(3) = 11 = 11
f(4) = 27 = 3*3*3
f(5) = 15 = 3*5
f(6) = 31 = 31
f(7) = 15 = 3*5
f(8) = 27 = 3*3*3
f(9) = 11 = 11
f(10) = 15 = 3*5
f(11) = 3 = 3
f(12) = 5 = 5
f(13) = 9 = 3*3
f(14) = 33 = 3*11
f(15) = 25 = 5*5
f(16) = 69 = 3*23
f(17) = 45 = 3*3*5
f(18) = 113 = 113
f(19) = 69 = 3*23
f(20) = 165 = 3*5*11
f(21) = 97 = 97
f(22) = 225 = 3*3*5*5
f(23) = 129 = 3*43
f(24) = 293 = 293
f(25) = 165 = 3*5*11
f(26) = 369 = 3*3*41
f(27) = 205 = 5*41
f(28) = 453 = 3*151
f(29) = 249 = 3*83
f(30) = 545 = 5*109
f(31) = 297 = 3*3*3*11
f(32) = 645 = 3*5*43
f(33) = 349 = 349
f(34) = 753 = 3*251
f(35) = 405 = 3*3*3*3*5
f(36) = 869 = 11*79
f(37) = 465 = 3*5*31
f(38) = 993 = 3*331
f(39) = 529 = 23*23
f(40) = 1125 = 3*3*5*5*5
f(41) = 597 = 3*199
f(42) = 1265 = 5*11*23
f(43) = 669 = 3*223
f(44) = 1413 = 3*3*157
f(45) = 745 = 5*149
f(46) = 1569 = 3*523
f(47) = 825 = 3*5*5*11
f(48) = 1733 = 1733
f(49) = 909 = 3*3*101
f(50) = 1905 = 3*5*127
f(51) = 997 = 997
f(52) = 2085 = 3*5*139
f(53) = 1089 = 3*3*11*11
f(54) = 2273 = 2273
f(55) = 1185 = 3*5*79
f(56) = 2469 = 3*823
f(57) = 1285 = 5*257
f(58) = 2673 = 3*3*3*3*3*11
f(59) = 1389 = 3*463
f(60) = 2885 = 5*577
f(61) = 1497 = 3*499
f(62) = 3105 = 3*3*3*5*23
f(63) = 1609 = 1609
f(64) = 3333 = 3*11*101
f(65) = 1725 = 3*5*5*23
f(66) = 3569 = 43*83
f(67) = 1845 = 3*3*5*41
f(68) = 3813 = 3*31*41
f(69) = 1969 = 11*179
f(70) = 4065 = 3*5*271
f(71) = 2097 = 3*3*233
f(72) = 4325 = 5*5*173
f(73) = 2229 = 3*743
f(74) = 4593 = 3*1531
f(75) = 2365 = 5*11*43
f(76) = 4869 = 3*3*541
f(77) = 2505 = 3*5*167
f(78) = 5153 = 5153
f(79) = 2649 = 3*883
f(80) = 5445 = 3*3*5*11*11
f(81) = 2797 = 2797
f(82) = 5745 = 3*5*383
f(83) = 2949 = 3*983
f(84) = 6053 = 6053
f(85) = 3105 = 3*3*3*5*23
f(86) = 6369 = 3*11*193
f(87) = 3265 = 5*653
f(88) = 6693 = 3*23*97
f(89) = 3429 = 3*3*3*127
f(90) = 7025 = 5*5*281
f(91) = 3597 = 3*11*109
f(92) = 7365 = 3*5*491
f(93) = 3769 = 3769
f(94) = 7713 = 3*3*857
f(95) = 3945 = 3*5*263
f(96) = 8069 = 8069
f(97) = 4125 = 3*5*5*5*11
f(98) = 8433 = 3*3*937
f(99) = 4309 = 31*139
f(100) = 8805 = 3*5*587

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-12x+5

f(0)=5
f(1)=3
f(2)=1
f(3)=11
f(4)=1
f(5)=1
f(6)=31
f(7)=1
f(8)=1
f(9)=1
f(10)=1
f(11)=1
f(12)=1
f(13)=1
f(14)=1
f(15)=1
f(16)=23
f(17)=1
f(18)=113
f(19)=1
f(20)=1
f(21)=97
f(22)=1
f(23)=43
f(24)=293
f(25)=1
f(26)=41
f(27)=1
f(28)=151
f(29)=83
f(30)=109
f(31)=1
f(32)=1
f(33)=349
f(34)=251
f(35)=1
f(36)=79
f(37)=1
f(38)=331
f(39)=1
f(40)=1
f(41)=199
f(42)=1
f(43)=223
f(44)=157
f(45)=149
f(46)=523
f(47)=1
f(48)=1733
f(49)=101
f(50)=127
f(51)=997
f(52)=139
f(53)=1
f(54)=2273
f(55)=1
f(56)=823
f(57)=257
f(58)=1
f(59)=463
f(60)=577
f(61)=499
f(62)=1
f(63)=1609
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=179
f(70)=271
f(71)=233
f(72)=173
f(73)=743
f(74)=1531
f(75)=1
f(76)=541
f(77)=167
f(78)=5153
f(79)=883
f(80)=1
f(81)=2797
f(82)=383
f(83)=983
f(84)=6053
f(85)=1
f(86)=193
f(87)=653
f(88)=1
f(89)=1
f(90)=281
f(91)=1
f(92)=491
f(93)=3769
f(94)=857
f(95)=263
f(96)=8069
f(97)=1
f(98)=937
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-12x+5 could be written as f(y)= y^2-31 with x=y+6

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-6
f'(x)>2x-13 with x > 6

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

5, 3, 1, 11, 1, 1, 31, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 113, 1, 1, 97, 1, 43, 293, 1, 41, 1, 151, 83, 109, 1, 1, 349, 251, 1, 79, 1, 331, 1, 1, 199, 1, 223, 157, 149, 523, 1, 1733, 101, 127, 997, 139, 1, 2273, 1, 823, 257, 1, 463, 577, 499, 1, 1609, 1, 1, 1, 1, 1, 179, 271, 233, 173, 743, 1531, 1, 541, 167, 5153, 883, 1, 2797, 383, 983, 6053, 1, 193, 653, 1, 1, 281, 1, 491, 3769, 857, 263, 8069, 1, 937, 1, 587, 1499, 1, 521, 3191, 977, 3323, 1, 1, 1, 719, 239, 1, 1, 11633, 1, 1, 1229, 1, 1, 2593, 733, 1, 6829, 421, 1, 14369, 487, 4951, 7549, 1, 1, 3169, 2683, 1, 1, 5623, 571, 17393, 1, 1, 827, 1231, 347, 19013, 643, 593, 397, 2237, 1, 1, 3499, 1, 10789, 317, 739, 22469, 1, 7691, 11689, 1579, 1, 4861, 373, 8311, 1, 947, 863, 2383, 4423, 1, 13597, 367, 4643, 1, 1, 9623, 1, 9851, 1, 1, 5099, 2063, 15649, 3517, 1, 32369, 1091, 3677, 16729, 1, 1, 1, 647, 1, 1, 1093, 1, 36833, 6203, 1, 1, 853, 1, 911, 1319, 4441, 1, 13591, 6863, 8317, 2333, 1, 1, 14411, 1, 1, 1483, 1361, 22669, 1, 7699, 1, 1, 1759, 4793, 701, 1627, 49253, 1, 3343, 617, 1, 2861, 4723, 1747, 17623, 5333, 1, 9043, 1, 9199, 1237, 28069, 1, 1, 2503, 1, 1, 1283, 3967, 1, 12097, 10163, 661, 6197, 631, 2099, 63473, 10663, 1433, 32497, 1, 11003, 66533, 1, 1, 619, 22871, 1, 13933, 11699, 1, 1, 2659, 2411, 72869, 2447, 1, 1, 5003, 1, 1, 4261, 2341, 1, 1, 877, 79493, 1213, 1, 40597, 1, 13723, 82913, 1, 9341, 1693, 28411, 14303, 1571, 1, 5839, 44089, 1, 1, 8179, 3019, 30391, 1, 2053, 1409, 1, 1, 1, 1, 1033, 1, 4231, 5441, 6571, 49597, 1, 5581, 2351, 3391, 34123, 10301, 1, 17383, 1, 17599, 787, 1, 35851, 3607, 108869, 1217, 1597, 5039, 1487, 1, 22573, 1, 3461, 11489, 12841, 1, 116933, 19603, 1, 59497, 1, 20063, 2953, 1, 40823, 1, 1, 769, 25057, 1, 8447, 63709, 1, 859, 11779, 1, 14557, 1, 8831, 1, 1, 7481, 45131, 13613, 1061, 1, 4463, 1, 9323, 70297, 1, 2153, 6211, 4787, 5347, 1, 4421, 24443, 5897, 8233, 9931, 74869, 4561, 1, 3709, 1019, 1, 7019, 3449, 25999, 31357, 26263, 17597, 1447, 53323, 1, 161573, 1, 1, 1, 10987, 3067, 1117, 1, 1, 16889, 1, 1, 34273, 2609, 1, 86929, 58231, 5851, 176369, 1, 59351, 89449, 1, 1, 3299, 1321, 61051, 18401, 1, 1, 16963, 1, 1, 94597, 12671, 1, 2311, 2141, 1, 3889, 65111, 991, 1, 32999, 13259, 1, 2027, 6719, 8803, 6779, 22697, 1, 1249, 34499, 967, 1289, 69911, 1, 1, 1, 2113, 1, 1, 1, 1, 36343, 218993, 7331, 1, 1, 1811, 1621, 1, 1, 1373, 113749, 1, 2549, 230369, 1, 77431, 1, 1, 39199, 1, 3593, 8819, 23909, 1861, 1607, 22003, 1, 16267, 122497, 1, 13721, 22543, 1, 1, 25097, 27997, 3833, 1, 42499, 5689, 128509, 86011, 1, 1871, 1, 2131, 3209, 1601, 1637, 1, 44543, 89431, 1171, 2731, 1, 272453, 1, 6101, 12527, 18443, 1493, 278753, 3109, 1, 1, 94331, 1, 2281, 47699, 1741, 144169, 1, 1, 291569, 1951, 1, 147409, 19727, 49499, 59617, 1511, 1, 30137, 100823, 3373, 2399, 1, 1, 153997, 6869, 1, 1, 2083, 34841, 31469, 1, 1, 5783, 1, 4271, 1657, 1, 1, 324869, 10867, 1, 164149, 7321, 5009, 1543, 1, 37117, 33521, 10193, 11251, 2243, 1, 4547, 1, 2081, 19141, 15031, 1, 1, 1, 12979, 58603, 1721, 1439, 1, 1, 119191, 11959, 2011, 4013, 1, 181789, 1, 20333, 1, 61403, 1, 7417, 41341, 1, 1567, 5693, 8377, 1, 5059, 63443, 1, 1, 4133, 38561, 128951, 7187, 7079, 65099, 1, 196549, 1, 13187, 1, 1, 1, 200329, 1, 1, 1973, 22541, 135671, 40829, 136523, 1, 412133, 68903, 27647, 207997, 1, 69763, 419873, 1, 15647, 1367, 1, 1, 3719, 23833, 28687, 1, 144311, 1, 435569, 14563, 1, 19979, 1, 73699, 1, 74143, 4507, 44753, 149623, 1, 451553, 8387, 2753, 227797, 1, 1, 4217, 1, 6701, 1, 1667, 77743, 18713, 7109, 10457, 2843, 157771, 15823, 1, 1, 1, 240109, 1, 26833, 8807, 80963, 162391, 48857, 1, 1489, 1, 3581, 3671, 5779, 1, 7573, 501233, 1, 168023, 50549, 15361, 1, 2371, 85199, 1, 6269, 1, 17231, 2017, 17327, 57917, 1, 1, 1, 4583, 9787, 176651, 4831, 177623, 1979, 535793, 1, 1, 270097, 12037, 90523, 544613, 1, 5531, 1, 183511, 92003, 3571, 2803, 1613, 1777, 4337, 1, 5569, 1709, 188491, 283489, 4211, 94999, 10391, 2221, 1, 1, 2437, 1, 52783, 32341, 1, 2897, 7823, 2971, 589793, 1, 2381, 59441, 2879, 1, 119809, 3229, 13381, 1999, 18341, 1, 608369, 1, 1, 306529, 1, 11411, 123553, 1, 1, 5659, 69341, 1, 27271, 104803, 14009, 1, 42239, 105863, 636773, 1, 1, 64157, 214391, 1, 129277, 107999, 1, 3923, 24179, 4363, 1, 1993, 24419, 330469, 44171, 4813, 26633, 3371, 9697, 67073, 2837, 7489, 1, 1, 45263, 340297, 15161, 113983, 62323, 22907, 76541, 1, 1, 10513, 1, 12911, 46591, 11299, 10177, 1, 17209, 1, 1, 8263, 1, 1, 143137, 119563, 1, 72077, 21893, 1, 3761, 1, 48619, 1, 48847, 40801, 7589, 4919, 246523, 1, 9173, 124123, 6491, 124699, 1, 1, 8101, 25171, 756869, 8429, 23041, 1, 50923, 42533, 153469, 1, 1, 77261, 1, 1, 18973, 11813, 1, 2029, 1, 5701, 1, 2927, 3181, 15877, 2347, 14767, 1, 133499, 1, 1, 89597, 1, 2207, 27059, 90397, 1, 1, 12409, 1, 1987, 274811, 1, 1, 9221, 831713, 138923, 55691, 418597, 1, 140143, 10667, 28151, 1, 1, 6911, 3463, 170749, 47533, 57163, 1, 1901, 1, 1, 1, 26321, 1, 3877, 1, 2111, 146323, 8887, 88169, 294523, 5903, 887333, 1, 59407, 1, 59659, 16607, 898673, 2729, 300823, 90437, 1, 6581, 16547, 1, 1, 4201, 1, 6131, 1, 1, 1, 1, 1, 4703, 1, 1, 312331, 93893, 34847, 2857, 1, 1, 7027, 475297, 1, 1, 12107, 1, 2039, 96233, 29221, 53681, 38729, 1, 64811, 44279, 108457, 32603, 980069, 6547, 3527, 44819,

6. Sequence of the polynom (only primes)

5, 3, 11, 31, 23, 113, 97, 43, 293, 41, 151, 83, 109, 349, 251, 79, 331, 199, 223, 157, 149, 523, 1733, 101, 127, 997, 139, 2273, 823, 257, 463, 577, 499, 1609, 179, 271, 233, 173, 743, 1531, 541, 167, 5153, 883, 2797, 383, 983, 6053, 193, 653, 281, 491, 3769, 857, 263, 8069, 937, 587, 1499, 521, 3191, 977, 3323, 719, 239, 11633, 1229, 2593, 733, 6829, 421, 14369, 487, 4951, 7549, 3169, 2683, 5623, 571, 17393, 827, 1231, 347, 19013, 643, 593, 397, 2237, 3499, 10789, 317, 739, 22469, 7691, 11689, 1579, 4861, 373, 8311, 947, 863, 2383, 4423, 13597, 367, 4643, 9623, 9851, 5099, 2063, 15649, 3517, 32369, 1091, 3677, 16729, 647, 1093, 36833, 6203, 853, 911, 1319, 4441, 13591, 6863, 8317, 2333, 14411, 1483, 1361, 22669, 7699, 1759, 4793, 701, 1627, 49253, 3343, 617, 2861, 4723, 1747, 17623, 5333, 9043, 9199, 1237, 28069, 2503, 1283, 3967, 12097, 10163, 661, 6197, 631, 2099, 63473, 10663, 1433, 32497, 11003, 66533, 619, 22871, 13933, 11699, 2659, 2411, 72869, 2447, 5003, 4261, 2341, 877, 79493, 1213, 40597, 13723, 82913, 9341, 1693, 28411, 14303, 1571, 5839, 44089, 8179, 3019, 30391, 2053, 1409, 1033, 4231, 5441, 6571, 49597, 5581, 2351, 3391, 34123, 10301, 17383, 17599, 787, 35851, 3607, 108869, 1217, 1597, 5039, 1487, 22573, 3461, 11489, 12841, 116933, 19603, 59497, 20063, 2953, 40823, 769, 25057, 8447, 63709, 859, 11779, 14557, 8831, 7481, 45131, 13613, 1061, 4463, 9323, 70297, 2153, 6211, 4787, 5347, 4421, 24443, 5897, 8233, 9931, 74869, 4561, 3709, 1019, 7019, 3449, 25999, 31357, 26263, 17597, 1447, 53323, 161573, 10987, 3067, 1117, 16889, 34273, 2609, 86929, 58231, 5851, 176369, 59351, 89449, 3299, 1321, 61051, 18401, 16963, 94597, 12671, 2311, 2141, 3889, 65111, 991, 32999, 13259, 2027, 6719, 8803, 6779, 22697, 1249, 34499, 967, 1289, 69911, 2113, 36343, 218993, 7331, 1811, 1621, 1373, 113749, 2549, 230369, 77431, 39199, 3593, 8819, 23909, 1861, 1607, 22003, 16267, 122497, 13721, 22543, 25097, 27997, 3833, 42499, 5689, 128509, 86011, 1871, 2131, 3209, 1601, 1637, 44543, 89431, 1171, 2731, 272453, 6101, 12527, 18443, 1493, 278753, 3109, 94331, 2281, 47699, 1741, 144169, 291569, 1951, 147409, 19727, 49499, 59617, 1511, 30137, 100823, 3373, 2399, 153997, 6869, 2083, 34841, 31469, 5783, 4271, 1657, 324869, 10867, 164149, 7321, 5009, 1543, 37117, 33521, 10193, 11251, 2243, 4547, 2081, 19141, 15031, 12979, 58603, 1721, 1439, 119191, 11959, 2011, 4013, 181789, 20333, 61403, 7417, 41341, 1567, 5693, 8377, 5059, 63443, 4133, 38561, 128951, 7187, 7079, 65099, 196549, 13187, 200329, 1973, 22541, 135671, 40829, 136523, 412133, 68903, 27647, 207997, 69763, 419873, 15647, 1367, 3719, 23833, 28687, 144311, 435569, 14563, 19979, 73699, 74143, 4507, 44753, 149623, 451553, 8387, 2753, 227797, 4217, 6701, 1667, 77743, 18713, 7109, 10457, 2843, 157771, 15823, 240109, 26833, 8807, 80963, 162391, 48857, 1489, 3581, 3671, 5779, 7573, 501233, 168023, 50549, 15361, 2371, 85199, 6269, 17231, 2017, 17327, 57917, 4583, 9787, 176651, 4831, 177623, 1979, 535793, 270097, 12037, 90523, 544613, 5531, 183511, 92003, 3571, 2803, 1613, 1777, 4337, 5569, 1709, 188491, 283489, 4211, 94999, 10391, 2221, 2437, 52783, 32341, 2897, 7823, 2971, 589793, 2381, 59441, 2879, 119809, 3229, 13381, 1999, 18341, 608369, 306529, 11411, 123553, 5659, 69341, 27271, 104803, 14009, 42239, 105863, 636773, 64157, 214391, 129277, 107999, 3923, 24179, 4363, 1993, 24419, 330469, 44171, 4813, 26633, 3371, 9697, 67073, 2837, 7489, 45263, 340297, 15161, 113983, 62323, 22907, 76541, 10513, 12911, 46591, 11299, 10177, 17209, 8263, 143137, 119563, 72077, 21893, 3761, 48619, 48847, 40801, 7589, 4919, 246523, 9173, 124123, 6491, 124699, 8101, 25171, 756869, 8429, 23041, 50923, 42533, 153469, 77261, 18973, 11813, 2029, 5701, 2927, 3181, 15877, 2347, 14767, 133499, 89597, 2207, 27059, 90397, 12409, 1987, 274811, 9221, 831713, 138923, 55691, 418597, 140143, 10667, 28151, 6911, 3463, 170749, 47533, 57163, 1901, 26321, 3877, 2111, 146323, 8887, 88169, 294523, 5903, 887333, 59407, 59659, 16607, 898673, 2729, 300823, 90437, 6581, 16547, 4201, 6131, 4703, 312331, 93893, 34847, 2857, 7027, 475297, 12107, 2039, 96233, 29221, 53681, 38729, 64811, 44279, 108457, 32603, 980069, 6547, 3527, 44819,

7. Distribution of the primes

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

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)
1104400.4000000.4000000.000000
21005517380.5500000.1700000.38000013.7500004.250000inf
31.000648955530.6480000.0950000.55300011.7818185.58823514.552631
410.0006.6516316.0200.6651000.0631000.60200010.2638896.64210510.886076
5100.00067.1334.86062.2730.6713300.0486000.62273010.0936707.70206010.344352
61.000.000675.27539.881635.3940.6752750.0398810.63539410.0587648.20596710.203362
710.000.0006.775.603335.7546.439.8490.6775600.0335750.64398510.0338428.41889710.135206
8100.000.00067.940.5492.905.75265.034.7970.6794060.0290580.65034810.0272338.65440810.098807
91.000.000.000680.819.18025.628.036655.191.1440.6808190.0256280.65519110.0208078.81976010.074471
1010.000.000.0006.819.663.025229.115.4556.590.547.5700.6819660.0229120.65905510.0168498.94003210.058969


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.000000
243300.7500000.7500000.0000001.5000001.500000-nan
384400.5000000.5000000.0000001.3333331.333333-nan
4164400.2500000.2500000.0000001.0000001.000000-nan
53210730.3125000.2187500.0937502.5000001.750000inf
6643112190.4843750.1875000.2968753.1000001.7142866.333333
71287120510.5546880.1562500.3984382.2903231.6666672.684211
8256154341200.6015620.1328120.4687502.1690141.7000002.352941
9512320582620.6250000.1132810.5117192.0779221.7058822.183333
101.024663975660.6474610.0947270.5527342.0718751.6724142.160305
112.0481.3431711.1720.6557620.0834960.5722662.0256411.7628872.070671
124.0962.7072912.4160.6608890.0710450.5898442.0156371.7017542.061434
138.1925.4445234.9210.6645510.0638430.6007082.0110821.7972512.036838
1416.38410.9099779.9320.6658330.0596310.6062012.0038571.8680692.018289
1532.76821.9701.76420.2060.6704710.0538330.6166382.0139331.8055272.034434
1665.53644.0053.31440.6910.6714630.0505680.6208952.0029591.8786852.013808
17131.07288.0236.23981.7840.6715620.0476000.6239622.0002951.8826192.009879
18262.144176.58011.716164.8640.6735990.0446930.6289062.0060671.8778652.015847
19524.288353.65022.139331.5110.6745340.0422270.6323072.0027751.8896382.010815
201.048.576708.07541.656666.4190.6752730.0397260.6355472.0021921.8815672.010247
212.097.1521.418.05678.7601.339.2960.6761820.0375560.6386262.0026921.8907242.009691
224.194.3042.838.717149.6412.689.0760.6768030.0356770.6411262.0018371.8999622.007828
238.388.6085.682.097285.1085.396.9890.6773590.0339880.6433712.0016431.9052802.007005
2416.777.21611.376.220544.23510.831.9850.6780760.0324390.6456372.0021161.9088732.007042
2533.554.43222.770.3771.041.23021.729.1470.6786100.0310310.6475792.0015771.9131992.006017
2667.108.86445.576.5321.996.33943.580.1930.6791430.0297480.6493952.0015711.9172892.005610
27134.217.72891.216.0563.834.38487.381.6720.6796130.0285680.6510442.0013821.9207082.005078
28268.435.456182.552.2657.375.997175.176.2680.6800600.0274780.6525822.0013171.9236462.004725
29536.870.912365.323.26814.212.813351.110.4550.6804680.0264730.6539942.0011981.9269012.004327
301.073.741.824731.066.86727.417.391703.649.4760.6808590.0255340.6553252.0011511.9290622.004069
312.147.483.6481.462.915.02152.944.9161.409.970.1050.6812230.0246540.6565682.0010691.9310702.003796
324.294.967.2962.927.317.310102.384.6662.824.932.6440.6815690.0238380.6577312.0010171.9337962.003541
338.589.934.5925.857.451.161198.189.4825.659.261.6790.6818970.0230720.6588252.0009621.9357342.003326
3417.179.869.18411.720.212.867384.046.70611.336.166.1610.6822060.0223540.6598522.0009071.9377752.003118
3534.359.738.36823.450.502.558744.937.72322.705.564.8350.6824990.0216810.6608192.0008601.9397062.002932
3668.719.476.73646.920.173.8111.446.222.62445.473.951.1870.6827780.0210450.6617332.0008181.9414012.002767


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
122010110
243020210
384120211
4164120211
5327242221
66412564251
7128208118291
8256341617142171
9512582928262291
101.024974848472471
112.0481718684802881
124.09629115014014121471
138.19252326325926022601
1416.38497749148548924851
1532.7681.76489287186628951
1665.5363.3141.6811.6321.66121.6501
17131.0726.2393.1583.0803.13623.1001
18262.14411.7165.9105.8055.83725.8761
19524.28822.13911.23010.90811.061211.0751
201.048.57641.65621.11120.54420.837220.8161
212.097.15278.76039.85238.90739.469239.2881
224.194.304149.64175.77873.86274.948274.6901
238.388.608285.108144.227140.880142.8062142.2991
2416.777.216544.235275.413268.821272.4972271.7351
2533.554.4321.041.230526.573514.656521.1802520.0471
2667.108.8641.996.3391.009.151987.187998.6112997.7251
27134.217.7283.834.3841.936.1421.898.2411.917.92921.916.4521
28268.435.4567.375.9973.723.2543.652.7423.689.06023.686.9341
29536.870.91214.212.8137.170.7487.042.0647.107.42227.105.3881
301.073.741.82427.417.39113.828.48013.588.91013.710.648213.706.7401
312.147.483.64852.944.91626.694.27426.250.64126.470.565226.474.3481
324.294.967.296102.384.66651.613.28050.771.38551.193.230251.191.4331
338.589.934.592198.189.48299.888.79498.300.68799.094.585299.094.8941
3417.179.869.184384.046.706193.508.528190.538.177192.016.9442192.029.7591
3534.359.738.368744.937.723375.268.895369.668.827372.464.3302372.473.3901
3668.719.476.7361.446.222.624728.392.200717.830.423723.104.0852723.118.5361


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
240000000
380000000
4160000000
5323210111
664191452647
712851252610131018
8256120635717372739
951226213812448835576
101.024566274292107176125158
112.0481.172582590240350254328
124.0962.4161.2171.199521704510681
138.1924.9212.4322.4891.0801.3891.0671.385
1416.3849.9324.9225.0102.1872.8042.2152.726
1532.76820.20610.04910.1574.5735.6054.5785.450
1665.53640.69120.17320.5189.35811.1009.27910.954
17131.07281.78440.66341.12118.78822.10918.74822.139
18262.144164.86482.32282.54238.06944.28038.20044.315
19524.288331.511165.513165.99877.01988.66377.29488.535
201.048.576666.419333.089333.330155.592177.490155.869177.468
212.097.1521.339.296669.259670.037314.097355.408314.420355.371
224.194.3042.689.0761.343.0131.346.063633.730711.186633.357710.803
238.388.6085.396.9892.695.4222.701.5671.275.0001.423.1221.275.2721.423.595
2416.777.21610.831.9855.412.2805.419.7052.565.4162.850.0442.568.4732.848.052
2533.554.43221.729.14710.857.43810.871.7095.163.4475.700.5475.164.6455.700.508
2667.108.86443.580.19321.780.53421.799.65910.378.77711.413.91410.381.20411.406.298
27134.217.72887.381.67243.678.97943.702.69320.856.35622.835.13320.860.50922.829.674
28268.435.456175.176.26887.563.44087.612.82841.895.95545.691.02041.899.36445.689.929
29536.870.912351.110.455175.506.533175.603.92284.133.11091.418.28584.145.24091.413.820
301.073.741.824703.649.476351.743.540351.905.936168.892.433182.931.691168.893.878182.931.474
312.147.483.6481.409.970.105704.831.126705.138.979338.927.760366.050.653338.955.398366.036.294
324.294.967.2962.824.932.6441.412.202.9561.412.729.688680.053.364732.414.682680.057.309732.407.289
338.589.934.5925.659.261.6792.829.179.1692.830.082.5101.364.144.5041.465.469.4631.364.179.5231.465.468.189
3417.179.869.18411.336.166.1615.667.217.1115.668.949.0502.735.956.1342.932.127.3422.735.960.4852.932.122.200
3534.359.738.36822.705.564.83511.351.095.65911.354.469.1765.486.232.2145.866.513.8105.486.334.7615.866.484.050
3668.719.476.73645.473.951.18722.733.793.31622.740.157.87110.999.580.84611.737.417.06710.999.631.60011.737.321.674


8. Check for existing Integer Sequences by OEIS

Found in Database : 5, 3, 1, 11, 1, 1, 31, 1, 1, 1, 1, 1, 1, 1, 1, 1, 23, 1, 113, 1,
Found in Database : 5, 3, 11, 31, 23, 113, 97, 43, 293, 41, 151, 83, 109, 349, 251, 79, 331,
Found in Database : 3, 5, 11, 23, 31, 41, 43, 79, 83, 97, 101, 109, 113, 127, 139, 149,