Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:56:42
Deutsch
19.Apr 2024

Polynom = x^2+13x+3

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) = 3 = 3
f(1) = 17 = 17
f(2) = 33 = 3*11
f(3) = 51 = 3*17
f(4) = 71 = 71
f(5) = 93 = 3*31
f(6) = 117 = 3*3*13
f(7) = 143 = 11*13
f(8) = 171 = 3*3*19
f(9) = 201 = 3*67
f(10) = 233 = 233
f(11) = 267 = 3*89
f(12) = 303 = 3*101
f(13) = 341 = 11*31
f(14) = 381 = 3*127
f(15) = 423 = 3*3*47
f(16) = 467 = 467
f(17) = 513 = 3*3*3*19
f(18) = 561 = 3*11*17
f(19) = 611 = 13*47
f(20) = 663 = 3*13*17
f(21) = 717 = 3*239
f(22) = 773 = 773
f(23) = 831 = 3*277
f(24) = 891 = 3*3*3*3*11
f(25) = 953 = 953
f(26) = 1017 = 3*3*113
f(27) = 1083 = 3*19*19
f(28) = 1151 = 1151
f(29) = 1221 = 3*11*37
f(30) = 1293 = 3*431
f(31) = 1367 = 1367
f(32) = 1443 = 3*13*37
f(33) = 1521 = 3*3*13*13
f(34) = 1601 = 1601
f(35) = 1683 = 3*3*11*17
f(36) = 1767 = 3*19*31
f(37) = 1853 = 17*109
f(38) = 1941 = 3*647
f(39) = 2031 = 3*677
f(40) = 2123 = 11*193
f(41) = 2217 = 3*739
f(42) = 2313 = 3*3*257
f(43) = 2411 = 2411
f(44) = 2511 = 3*3*3*3*31
f(45) = 2613 = 3*13*67
f(46) = 2717 = 11*13*19
f(47) = 2823 = 3*941
f(48) = 2931 = 3*977
f(49) = 3041 = 3041
f(50) = 3153 = 3*1051
f(51) = 3267 = 3*3*3*11*11
f(52) = 3383 = 17*199
f(53) = 3501 = 3*3*389
f(54) = 3621 = 3*17*71
f(55) = 3743 = 19*197
f(56) = 3867 = 3*1289
f(57) = 3993 = 3*11*11*11
f(58) = 4121 = 13*317
f(59) = 4251 = 3*13*109
f(60) = 4383 = 3*3*487
f(61) = 4517 = 4517
f(62) = 4653 = 3*3*11*47
f(63) = 4791 = 3*1597
f(64) = 4931 = 4931
f(65) = 5073 = 3*19*89
f(66) = 5217 = 3*37*47
f(67) = 5363 = 31*173
f(68) = 5511 = 3*11*167
f(69) = 5661 = 3*3*17*37
f(70) = 5813 = 5813
f(71) = 5967 = 3*3*3*13*17
f(72) = 6123 = 3*13*157
f(73) = 6281 = 11*571
f(74) = 6441 = 3*19*113
f(75) = 6603 = 3*31*71
f(76) = 6767 = 67*101
f(77) = 6933 = 3*2311
f(78) = 7101 = 3*3*3*263
f(79) = 7271 = 11*661
f(80) = 7443 = 3*3*827
f(81) = 7617 = 3*2539
f(82) = 7793 = 7793
f(83) = 7971 = 3*2657
f(84) = 8151 = 3*11*13*19
f(85) = 8333 = 13*641
f(86) = 8517 = 3*17*167
f(87) = 8703 = 3*3*967
f(88) = 8891 = 17*523
f(89) = 9081 = 3*3*1009
f(90) = 9273 = 3*11*281
f(91) = 9467 = 9467
f(92) = 9663 = 3*3221
f(93) = 9861 = 3*19*173
f(94) = 10061 = 10061
f(95) = 10263 = 3*11*311
f(96) = 10467 = 3*3*1163
f(97) = 10673 = 13*821
f(98) = 10881 = 3*3*3*13*31
f(99) = 11091 = 3*3697
f(100) = 11303 = 89*127

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+13x+3

f(0)=3
f(1)=17
f(2)=11
f(3)=1
f(4)=71
f(5)=31
f(6)=13
f(7)=1
f(8)=19
f(9)=67
f(10)=233
f(11)=89
f(12)=101
f(13)=1
f(14)=127
f(15)=47
f(16)=467
f(17)=1
f(18)=1
f(19)=1
f(20)=1
f(21)=239
f(22)=773
f(23)=277
f(24)=1
f(25)=953
f(26)=113
f(27)=1
f(28)=1151
f(29)=37
f(30)=431
f(31)=1367
f(32)=1
f(33)=1
f(34)=1601
f(35)=1
f(36)=1
f(37)=109
f(38)=647
f(39)=677
f(40)=193
f(41)=739
f(42)=257
f(43)=2411
f(44)=1
f(45)=1
f(46)=1
f(47)=941
f(48)=977
f(49)=3041
f(50)=1051
f(51)=1
f(52)=199
f(53)=389
f(54)=1
f(55)=197
f(56)=1289
f(57)=1
f(58)=317
f(59)=1
f(60)=487
f(61)=4517
f(62)=1
f(63)=1597
f(64)=4931
f(65)=1
f(66)=1
f(67)=173
f(68)=167
f(69)=1
f(70)=5813
f(71)=1
f(72)=157
f(73)=571
f(74)=1
f(75)=1
f(76)=1
f(77)=2311
f(78)=263
f(79)=661
f(80)=827
f(81)=2539
f(82)=7793
f(83)=2657
f(84)=1
f(85)=641
f(86)=1
f(87)=967
f(88)=523
f(89)=1009
f(90)=281
f(91)=9467
f(92)=3221
f(93)=1
f(94)=10061
f(95)=311
f(96)=1163
f(97)=821
f(98)=1
f(99)=3697

b) Substitution of the polynom
The polynom f(x)=x^2+13x+3 could be written as f(y)= y^2-39.25 with x=y-6.5

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.5
f'(x)>2x+12

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

3, 17, 11, 1, 71, 31, 13, 1, 19, 67, 233, 89, 101, 1, 127, 47, 467, 1, 1, 1, 1, 239, 773, 277, 1, 953, 113, 1, 1151, 37, 431, 1367, 1, 1, 1601, 1, 1, 109, 647, 677, 193, 739, 257, 2411, 1, 1, 1, 941, 977, 3041, 1051, 1, 199, 389, 1, 197, 1289, 1, 317, 1, 487, 4517, 1, 1597, 4931, 1, 1, 173, 167, 1, 5813, 1, 157, 571, 1, 1, 1, 2311, 263, 661, 827, 2539, 7793, 2657, 1, 641, 1, 967, 523, 1009, 281, 9467, 3221, 1, 10061, 311, 1163, 821, 1, 3697, 1, 349, 3911, 1, 4057, 1, 1, 1427, 4357, 283, 347, 353, 1, 1, 1609, 14723, 1663, 461, 15461, 5237, 313, 16217, 1, 1, 1307, 1, 5839, 17783, 547, 1, 18593, 331, 709, 19421, 1, 6661, 1559, 1, 6947, 1, 1, 1, 22013, 1, 7537, 2083, 1, 7841, 23831, 619, 1, 24767, 929, 8467, 1, 8681, 1, 26693, 9007, 1013, 1, 1, 727, 2207, 9677, 9791, 29717, 911, 1, 1619, 3457, 617, 1, 631, 10847, 2531, 853, 1, 1, 1, 1, 35117, 11831, 1087, 36251, 12211, 457, 1, 1, 1, 2269, 419, 13121, 39761, 1217, 4507, 577, 4597, 733, 1361, 1291, 1103, 1, 1, 4919, 1, 557, 1, 45971, 15467, 1, 4297, 15901, 1783, 1, 1, 1499, 1, 16787, 16937, 51263, 17239, 1, 52631, 1, 17851, 2843, 1, 1409, 1, 601, 6263, 56843, 1, 19267, 1, 1031, 19751, 5431, 1181, 1, 1, 6857, 1, 5701, 1109, 1, 64223, 21577, 659, 1399, 1, 1, 1, 1, 1, 4051, 23131, 1, 70451, 1, 769, 72053, 24197, 1283, 73673, 1, 1, 593, 8429, 25471, 6997, 25841, 1531, 4139, 1553, 8863, 1, 1, 2089, 6311, 27539, 2521, 4409, 907, 9437, 85517, 1063, 1, 87281, 1723, 797, 1, 1, 3343, 90863, 10163, 653, 92681, 1, 1, 2011, 1669, 10639, 8761, 829, 2503, 5779, 32957, 1951, 9103, 33589, 1, 1523, 3803, 1, 103967, 34871, 2699, 8147, 35521, 1, 107873, 1, 2141, 2969, 1, 37061, 3023, 37507, 12577, 1, 1, 1, 115901, 38861, 39089, 10723, 1, 13259, 6317, 1, 40471, 1, 1, 3167, 4007, 41641, 1, 126341, 743, 42589, 128483, 43067, 1, 130643, 43789, 1129, 1, 1, 2633, 135017, 1223, 45497, 1259, 1, 15413, 1567, 1, 2473, 991, 1, 47741, 143981, 48247, 1, 13297, 1, 2593, 1471, 1, 4549, 150893, 3889, 1303, 4943, 1, 4691, 1, 52127, 52391, 3361, 1, 17729, 9433, 1, 4153, 1, 4957, 1481, 165203, 55339, 1, 15241, 18719, 56431, 1, 2999, 1847, 1, 4447, 1, 175103, 1, 1, 177623, 1, 59771, 180161, 60337, 1, 2053, 1, 4729, 185291, 5641, 1, 187883, 3701, 2341, 2683, 1933, 64081, 1, 64667, 1, 1, 65551, 1, 1, 22147, 66739, 1, 1, 1, 1, 68239, 1, 15887, 1, 1, 209267, 70061, 6397, 11159, 70981, 1, 1, 2179, 1, 12799, 1, 1, 220391, 1, 24697, 223217, 24907, 75037, 20551, 2441, 75989, 228923, 1, 1973, 1621, 1, 4583, 1, 4621, 1, 1871, 79531, 1, 240551, 1, 7349, 18731, 6269, 1741, 246473, 7499, 1453, 1, 1637, 1, 14851, 7681, 84827, 1069, 6577, 1, 1237, 9613, 86857, 261593, 87539, 87881, 24061, 2857, 1, 1, 29867, 1, 1, 90641, 90989, 2713, 1, 2789, 277163, 1627, 1, 1423, 8527, 94151, 1, 7297, 1867, 286721, 1, 96289, 1, 97007, 97367, 2423, 2087, 10939, 296441, 2543, 1, 2477, 100271, 1, 303011, 1, 3083, 1, 34159, 5413, 8369, 1459, 1, 24077, 104707, 35027, 1231, 1, 106207, 16829, 106961, 107339, 19009, 1, 1, 25121, 2801, 109621, 1579, 1, 110771, 1, 1571, 37309, 30631, 37567, 113089, 1229, 1, 1, 343943, 1, 1, 7393, 1, 10601, 2029, 1, 117797, 354581, 10781, 1, 27551, 39929, 3877, 361763, 1, 6389, 21493, 1373, 40867, 33547, 1327, 123817, 1, 9587, 6581, 34213, 1, 42089, 1, 1, 1, 22573, 128327, 7573, 20393, 9967, 1, 2027, 43607, 3547, 5563, 12007, 3581, 1, 2837, 44587, 402551, 4079, 1, 31259, 7993, 4397, 1, 7219, 45863, 414053, 15383, 1, 37993, 139739, 140171, 1, 1, 1429, 2161, 2791, 2131, 1, 143651, 13099, 1543, 144967, 2551, 437543, 1, 11287, 11933, 147617, 148061, 12041, 1, 2621, 1, 16699, 8867, 41233, 151637, 11699, 35201, 152989, 5683, 1, 51449, 1, 1999, 3313, 14197, 7013, 157081, 3089, 1, 1, 14447, 1, 159839, 5171, 5419, 14657, 53897, 4463, 1, 2297, 490661, 1, 12653, 494873, 1, 18433, 1, 2927, 167311, 503351, 1489, 168731, 46147, 169681, 4363, 1, 57037, 1, 1, 1583, 2437, 1, 1, 1, 16931, 1, 1, 40709, 1, 1993, 11353, 178351, 1, 1901, 5449, 180307, 28547, 1, 1, 49711, 1, 1, 3301, 61417, 1, 2659, 1, 186239, 560213, 187237, 5689, 564713, 1, 14557, 43787, 1, 17341, 33751, 1697, 7121, 3463, 5857, 193789, 18803, 10253, 1, 45191, 1, 65617, 1, 1, 198391, 3191, 4243, 1, 16253, 200971, 1, 1, 1, 15619, 610703, 1607, 1, 615401, 205657, 1, 620117, 1, 1, 624851, 1, 16103, 2549, 1, 70309, 634373, 70663, 1, 1931, 19417, 1, 33893, 215191, 71909, 1, 1, 217339, 38449, 218417, 1, 59863, 1, 24509, 663371, 1997, 20201, 21557, 1, 1, 14323, 11839, 6833, 1, 1, 1, 6763, 20749, 2099, 688031, 229897, 1, 53309, 2339, 232117, 698021, 233231, 1, 63913, 234907, 1, 9973, 4639, 237151, 4987, 18329, 238841, 1, 7741, 1, 38069, 80557, 6547, 728423, 1, 1, 23663, 1, 6299, 2287, 1, 247381, 10477, 1, 249107, 749051, 22751, 1, 5939, 4421, 19429, 1, 2851, 1, 44983, 255487, 5021, 69997, 4513, 8317, 775241, 259001, 23599, 60041, 1, 87119, 1, 1, 1, 21383, 2617, 15583, 796517, 1, 29633, 1, 6869, 1, 1873, 24517, 270287, 1, 271489, 90697, 6761, 91099, 273901, 1, 16183, 1, 1, 1, 1, 1, 1, 1, 44207, 280589, 1, 845441, 282427, 1, 1, 1, 1, 50383, 1, 1, 3607, 287977, 96199, 867653, 8783, 4091, 873251, 1, 1, 1, 1, 1, 884501, 1, 17417, 80923, 17491, 15683, 895823, 299239, 1, 2237, 100379, 1, 907217, 4523, 1, 912941, 1, 101863, 918683, 1, 8311, 1, 23753, 8363, 1, 1, 103787, 3559, 34739, 313297, 85621, 314591, 10169, 49877, 1, 2711, 5099, 106163, 18773, 3733, 10337, 29191, 965267, 1, 1, 971171, 108127, 2273, 75161, 4871, 327017, 9733, 1, 6451, 1, 1, 3719, 26891, 30211, 332987, 2081, 25717, 1, 2953, 1, 336997,

6. Sequence of the polynom (only primes)

3, 17, 11, 71, 31, 13, 19, 67, 233, 89, 101, 127, 47, 467, 239, 773, 277, 953, 113, 1151, 37, 431, 1367, 1601, 109, 647, 677, 193, 739, 257, 2411, 941, 977, 3041, 1051, 199, 389, 197, 1289, 317, 487, 4517, 1597, 4931, 173, 167, 5813, 157, 571, 2311, 263, 661, 827, 2539, 7793, 2657, 641, 967, 523, 1009, 281, 9467, 3221, 10061, 311, 1163, 821, 3697, 349, 3911, 4057, 1427, 4357, 283, 347, 353, 1609, 14723, 1663, 461, 15461, 5237, 313, 16217, 1307, 5839, 17783, 547, 18593, 331, 709, 19421, 6661, 1559, 6947, 22013, 7537, 2083, 7841, 23831, 619, 24767, 929, 8467, 8681, 26693, 9007, 1013, 727, 2207, 9677, 9791, 29717, 911, 1619, 3457, 617, 631, 10847, 2531, 853, 35117, 11831, 1087, 36251, 12211, 457, 2269, 419, 13121, 39761, 1217, 4507, 577, 4597, 733, 1361, 1291, 1103, 4919, 557, 45971, 15467, 4297, 15901, 1783, 1499, 16787, 16937, 51263, 17239, 52631, 17851, 2843, 1409, 601, 6263, 56843, 19267, 1031, 19751, 5431, 1181, 6857, 5701, 1109, 64223, 21577, 659, 1399, 4051, 23131, 70451, 769, 72053, 24197, 1283, 73673, 593, 8429, 25471, 6997, 25841, 1531, 4139, 1553, 8863, 2089, 6311, 27539, 2521, 4409, 907, 9437, 85517, 1063, 87281, 1723, 797, 3343, 90863, 10163, 653, 92681, 2011, 1669, 10639, 8761, 829, 2503, 5779, 32957, 1951, 9103, 33589, 1523, 3803, 103967, 34871, 2699, 8147, 35521, 107873, 2141, 2969, 37061, 3023, 37507, 12577, 115901, 38861, 39089, 10723, 13259, 6317, 40471, 3167, 4007, 41641, 126341, 743, 42589, 128483, 43067, 130643, 43789, 1129, 2633, 135017, 1223, 45497, 1259, 15413, 1567, 2473, 991, 47741, 143981, 48247, 13297, 2593, 1471, 4549, 150893, 3889, 1303, 4943, 4691, 52127, 52391, 3361, 17729, 9433, 4153, 4957, 1481, 165203, 55339, 15241, 18719, 56431, 2999, 1847, 4447, 175103, 177623, 59771, 180161, 60337, 2053, 4729, 185291, 5641, 187883, 3701, 2341, 2683, 1933, 64081, 64667, 65551, 22147, 66739, 68239, 15887, 209267, 70061, 6397, 11159, 70981, 2179, 12799, 220391, 24697, 223217, 24907, 75037, 20551, 2441, 75989, 228923, 1973, 1621, 4583, 4621, 1871, 79531, 240551, 7349, 18731, 6269, 1741, 246473, 7499, 1453, 1637, 14851, 7681, 84827, 1069, 6577, 1237, 9613, 86857, 261593, 87539, 87881, 24061, 2857, 29867, 90641, 90989, 2713, 2789, 277163, 1627, 1423, 8527, 94151, 7297, 1867, 286721, 96289, 97007, 97367, 2423, 2087, 10939, 296441, 2543, 2477, 100271, 303011, 3083, 34159, 5413, 8369, 1459, 24077, 104707, 35027, 1231, 106207, 16829, 106961, 107339, 19009, 25121, 2801, 109621, 1579, 110771, 1571, 37309, 30631, 37567, 113089, 1229, 343943, 7393, 10601, 2029, 117797, 354581, 10781, 27551, 39929, 3877, 361763, 6389, 21493, 1373, 40867, 33547, 1327, 123817, 9587, 6581, 34213, 42089, 22573, 128327, 7573, 20393, 9967, 2027, 43607, 3547, 5563, 12007, 3581, 2837, 44587, 402551, 4079, 31259, 7993, 4397, 7219, 45863, 414053, 15383, 37993, 139739, 140171, 1429, 2161, 2791, 2131, 143651, 13099, 1543, 144967, 2551, 437543, 11287, 11933, 147617, 148061, 12041, 2621, 16699, 8867, 41233, 151637, 11699, 35201, 152989, 5683, 51449, 1999, 3313, 14197, 7013, 157081, 3089, 14447, 159839, 5171, 5419, 14657, 53897, 4463, 2297, 490661, 12653, 494873, 18433, 2927, 167311, 503351, 1489, 168731, 46147, 169681, 4363, 57037, 1583, 2437, 16931, 40709, 1993, 11353, 178351, 1901, 5449, 180307, 28547, 49711, 3301, 61417, 2659, 186239, 560213, 187237, 5689, 564713, 14557, 43787, 17341, 33751, 1697, 7121, 3463, 5857, 193789, 18803, 10253, 45191, 65617, 198391, 3191, 4243, 16253, 200971, 15619, 610703, 1607, 615401, 205657, 620117, 624851, 16103, 2549, 70309, 634373, 70663, 1931, 19417, 33893, 215191, 71909, 217339, 38449, 218417, 59863, 24509, 663371, 1997, 20201, 21557, 14323, 11839, 6833, 6763, 20749, 2099, 688031, 229897, 53309, 2339, 232117, 698021, 233231, 63913, 234907, 9973, 4639, 237151, 4987, 18329, 238841, 7741, 38069, 80557, 6547, 728423, 23663, 6299, 2287, 247381, 10477, 249107, 749051, 22751, 5939, 4421, 19429, 2851, 44983, 255487, 5021, 69997, 4513, 8317, 775241, 259001, 23599, 60041, 87119, 21383, 2617, 15583, 796517, 29633, 6869, 1873, 24517, 270287, 271489, 90697, 6761, 91099, 273901, 16183, 44207, 280589, 845441, 282427, 50383, 3607, 287977, 96199, 867653, 8783, 4091, 873251, 884501, 17417, 80923, 17491, 15683, 895823, 299239, 2237, 100379, 907217, 4523, 912941, 101863, 918683, 8311, 23753, 8363, 103787, 3559, 34739, 313297, 85621, 314591, 10169, 49877, 2711, 5099, 106163, 18773, 3733, 10337, 29191, 965267, 971171, 108127, 2273, 75161, 4871, 327017, 9733, 6451, 3719, 26891, 30211, 332987, 2081, 25717, 2953, 336997,

7. Distribution of the primes

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

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)
1109450.9000000.4000000.5000000.0000000.0000000.000000
21006719480.6700000.1900000.4800007.4444454.7500009.600000
31.0006861055810.6860000.1050000.58100010.2388065.52631612.104167
410.0006.8607496.1110.6860000.0749000.61110010.0000007.13333310.518072
5100.00068.8605.86063.0000.6886000.0586000.63000010.0379017.82376510.309278
61.000.000689.00147.848641.1530.6890010.0478480.64115310.0058238.16518810.177032
710.000.0006.895.051403.8076.491.2440.6895050.0403810.64912410.0073178.43937010.124330
8100.000.00068.975.7893.503.98065.471.8090.6897580.0350400.65471810.0036678.67736310.086173
91.000.000.000690.001.84930.927.926659.073.9230.6900020.0309280.65907410.0035368.82651310.066530
1010.000.000.0006.902.231.438276.822.2696.625.409.1690.6902230.0276820.66254110.0032078.95056110.052604


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
244311.0000000.7500000.2500001.3333331.5000001.000000
387340.8750000.3750000.5000001.7500001.0000004.000000
41614590.8750000.3125000.5625002.0000001.6666672.250000
532229130.6875000.2812500.4062501.5714291.8000001.444444
6644314290.6718750.2187500.4531251.9545451.5555562.230769
71288723640.6796880.1796880.5000002.0232561.6428572.206897
8256170381320.6640620.1484380.5156251.9540231.6521742.062500
9512349672820.6816410.1308590.5507812.0529411.7631582.136364
101.0247051065990.6884770.1035160.5849612.0200571.5820902.124114
112.0481.4041841.2200.6855470.0898440.5957031.9914891.7358492.036728
124.0962.8213552.4660.6887210.0866700.6020512.0092591.9293482.021312
138.1925.6206394.9810.6860350.0780030.6080321.9922011.8000002.019870
1416.38411.2561.15110.1050.6870120.0702510.6167602.0028471.8012522.028709
1532.76822.5802.12520.4550.6890870.0648500.6242372.0060411.8462212.024246
1665.53645.1633.96141.2020.6891330.0604400.6286932.0001331.8640002.014275
17131.07290.2687.47382.7950.6886900.0570140.6316761.9987161.8866452.009490
18262.144180.58813.993166.5950.6888890.0533790.6355092.0005761.8724742.012138
19524.288361.39626.311335.0850.6893080.0501840.6391242.0012181.8802972.011375
201.048.576722.50949.999672.5100.6890380.0476830.6413561.9992171.9003082.006983
212.097.1521.445.55494.6421.350.9120.6892940.0451290.6441652.0007421.8928782.008761
224.194.3042.891.622179.8792.711.7430.6894160.0428860.6465302.0003551.9006252.007342
238.388.6085.783.796342.7445.441.0520.6894820.0408580.6486242.0001911.9054142.006478
2416.777.21611.569.476655.73910.913.7370.6895950.0390850.6505092.0003261.9132032.005814
2533.554.43223.141.6931.254.46021.887.2330.6896760.0373860.6522902.0002371.9130482.005476
2667.108.86446.286.3612.406.81943.879.5420.6897210.0358640.6538562.0001291.9186102.004801
27134.217.72892.581.1984.624.94387.956.2550.6897840.0344590.6553252.0001831.9216002.004493
28268.435.456185.182.1878.898.568176.283.6190.6898570.0331500.6567082.0002141.9240382.004219
29536.870.912370.406.27317.145.274353.260.9990.6899350.0319360.6580002.0002261.9267452.003936
301.073.741.824740.894.29933.088.244707.806.0550.6900120.0308160.6591962.0002211.9298752.003635
312.147.483.6481.481.931.33863.935.1731.417.996.1650.6900780.0297720.6603062.0001931.9322622.003368
324.294.967.2962.964.149.085123.666.5532.840.482.5320.6901450.0287930.6613512.0001931.9342492.003167
338.589.934.5925.928.852.526239.451.1995.689.401.3270.6902090.0278760.6623332.0001871.9362652.002970
3417.179.869.18411.858.775.224464.117.58911.394.657.6350.6902720.0270150.6632562.0001801.9382552.002787
3534.359.738.36823.719.599.620900.473.01922.819.126.6010.6903310.0262070.6641242.0001731.9401832.002616
3668.719.476.73647.443.193.0021.748.632.11845.694.560.8840.6903890.0254460.6649432.0001681.9419042.002468


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
122011100
243021101
383021101
4165042201
5329083213
664140135423
7128230217754
825638036910109
95126706518181615
101.024106010426292724
112.048184018244504743
124.096355035392948287
138.1926390637156170155158
1416.3841.15101.149285295275296
1532.7682.12502.123532538523532
1665.5363.96103.9599661.018993984
17131.0727.47307.4711.8481.8791.8851.861
18262.14413.993013.9913.4463.5123.5353.500
19524.28826.311026.3096.5836.6066.5656.557
201.048.57649.999049.99712.48812.51312.56312.435
212.097.15294.642094.64023.71123.77223.67423.485
224.194.304179.8790179.87744.94145.18144.99344.764
238.388.608342.7440342.74285.81586.01485.52785.388
2416.777.216655.7390655.737163.940164.236163.816163.747
2533.554.4321.254.46001.254.458313.498314.039313.414313.509
2667.108.8642.406.81902.406.817601.015601.967601.755602.082
27134.217.7284.624.94304.624.9411.155.2541.156.6361.156.6711.156.382
28268.435.4568.898.56808.898.5662.223.4972.225.5872.224.3362.225.148
29536.870.91217.145.274017.145.2724.283.4934.287.8204.285.9554.288.006
301.073.741.82433.088.244033.088.2428.269.1038.274.5468.269.4688.275.127
312.147.483.64863.935.173063.935.17115.980.91715.986.27415.981.19715.986.785
324.294.967.296123.666.5530123.666.55130.916.73730.918.72730.914.17730.916.912
338.589.934.592239.451.1990239.451.19759.859.15959.863.11159.863.98259.864.947
3417.179.869.184464.117.5890464.117.587116.036.562116.030.007116.028.721116.022.299
3534.359.738.368900.473.0190900.473.017225.122.202225.126.789225.105.241225.118.787
3668.719.476.7361.748.632.11801.748.632.116437.156.749437.165.149437.154.076437.156.144


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
241010100
384310211
4169541323
53213672335
66429131665108
712864303415151816
8256132636932343135
951228214613669697272
101.024599306293146147154152
112.0481.220632588298306310306
124.0962.4661.2441.222606613627620
138.1924.9812.5312.4501.2631.2471.2201.251
1416.38410.1055.1464.9592.5372.5312.5062.531
1532.76820.45510.34210.1135.0595.0765.1315.189
1665.53641.20220.72120.48110.24810.26110.31610.377
17131.07282.79541.60641.18920.64620.60520.78520.759
18262.144166.59583.61382.98241.49641.78941.55341.757
19524.288335.085168.373166.71283.40184.01883.78483.882
201.048.576672.510337.754334.756167.679168.142168.469168.220
212.097.1521.350.912678.685672.227337.138338.236337.979337.559
224.194.3042.711.7431.361.9491.349.794677.863678.393677.779677.708
238.388.6085.441.0522.731.9002.709.1521.359.7701.360.4811.359.7191.361.082
2416.777.21610.913.7375.475.4915.438.2462.727.6892.728.0622.727.7962.730.190
2533.554.43221.887.23310.981.34810.905.8855.470.9805.470.3005.471.4155.474.538
2667.108.86443.879.54222.016.91421.862.62810.971.01810.967.31210.970.67110.970.541
27134.217.72887.956.25544.118.46743.837.78821.989.05021.988.81721.987.24021.991.148
28268.435.456176.283.61988.411.06287.872.55744.064.99744.076.84644.068.70544.073.071
29536.870.912353.260.999177.143.751176.117.24888.311.88488.327.61788.312.21688.309.282
301.073.741.824707.806.055354.875.794352.930.261176.958.797176.965.605176.944.969176.936.684
312.147.483.6481.417.996.165710.880.526707.115.639354.495.564354.517.308354.496.953354.486.340
324.294.967.2962.840.482.5321.423.895.9971.416.586.535710.105.539710.119.763710.122.922710.134.308
338.589.934.5925.689.401.3272.851.732.3902.837.668.9371.422.310.9701.422.346.6881.422.346.9871.422.396.682
3417.179.869.18411.394.657.6355.710.906.7045.683.750.9312.848.652.3332.848.655.4432.848.620.7392.848.729.120
3534.359.738.36822.819.126.60111.435.769.60511.383.356.9965.704.756.8665.704.798.8795.704.738.9555.704.831.901
3668.719.476.73645.694.560.88422.897.950.51922.796.610.36511.423.585.80011.423.702.96311.423.598.52911.423.673.592


8. Check for existing Integer Sequences by OEIS

Found in Database : 3, 17, 11, 1, 71, 31, 13, 1, 19, 67, 233, 89, 101, 1, 127, 47, 467, 1, 1, 1,
Found in Database : 3, 17, 11, 71, 31, 13, 19, 67, 233, 89, 101, 127, 47, 467, 239, 773, 277, 953, 113, 1151, 37, 431, 1367, 1601, 109, 647, 677,
Found in Database : 3, 11, 13, 17, 19, 31, 37, 47, 67, 71, 89, 101, 109, 113, 127,