Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:05:01
Deutsch
19.Apr 2024

Polynom = x^2+48x+7

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) = 7 = 7
f(1) = 7 = 7
f(2) = 107 = 107
f(3) = 5 = 5
f(4) = 215 = 5*43
f(5) = 17 = 17
f(6) = 331 = 331
f(7) = 49 = 7*7
f(8) = 455 = 5*7*13
f(9) = 65 = 5*13
f(10) = 587 = 587
f(11) = 41 = 41
f(12) = 727 = 727
f(13) = 25 = 5*5
f(14) = 875 = 5*5*5*7
f(15) = 119 = 7*17
f(16) = 1031 = 1031
f(17) = 139 = 139
f(18) = 1195 = 5*239
f(19) = 5 = 5
f(20) = 1367 = 1367
f(21) = 91 = 7*13
f(22) = 1547 = 7*13*17
f(23) = 205 = 5*41
f(24) = 1735 = 5*347
f(25) = 229 = 229
f(26) = 1931 = 1931
f(27) = 127 = 127
f(28) = 2135 = 5*7*61
f(29) = 35 = 5*7
f(30) = 2347 = 2347
f(31) = 307 = 307
f(32) = 2567 = 17*151
f(33) = 335 = 5*67
f(34) = 2795 = 5*13*43
f(35) = 91 = 7*13
f(36) = 3031 = 7*433
f(37) = 197 = 197
f(38) = 3275 = 5*5*131
f(39) = 425 = 5*5*17
f(40) = 3527 = 3527
f(41) = 457 = 457
f(42) = 3787 = 7*541
f(43) = 245 = 5*7*7
f(44) = 4055 = 5*811
f(45) = 131 = 131
f(46) = 4331 = 61*71
f(47) = 559 = 13*43
f(48) = 4615 = 5*13*71
f(49) = 595 = 5*7*17
f(50) = 4907 = 7*701
f(51) = 79 = 79
f(52) = 5207 = 41*127
f(53) = 335 = 5*67
f(54) = 5515 = 5*1103
f(55) = 709 = 709
f(56) = 5831 = 7*7*7*17
f(57) = 749 = 7*107
f(58) = 6155 = 5*1231
f(59) = 395 = 5*79
f(60) = 6487 = 13*499
f(61) = 13 = 13
f(62) = 6827 = 6827
f(63) = 875 = 5*5*5*7
f(64) = 7175 = 5*5*7*41
f(65) = 919 = 919
f(66) = 7531 = 17*443
f(67) = 241 = 241
f(68) = 7895 = 5*1579
f(69) = 505 = 5*101
f(70) = 8267 = 7*1181
f(71) = 1057 = 7*151
f(72) = 8647 = 8647
f(73) = 1105 = 5*13*17
f(74) = 9035 = 5*13*139
f(75) = 577 = 577
f(76) = 9431 = 9431
f(77) = 301 = 7*43
f(78) = 9835 = 5*7*281
f(79) = 1255 = 5*251
f(80) = 10247 = 10247
f(81) = 1307 = 1307
f(82) = 10667 = 10667
f(83) = 85 = 5*17
f(84) = 11095 = 5*7*317
f(85) = 707 = 7*101
f(86) = 11531 = 13*887
f(87) = 1469 = 13*113
f(88) = 11975 = 5*5*479
f(89) = 1525 = 5*5*61
f(90) = 12427 = 17*17*43
f(91) = 791 = 7*113
f(92) = 12887 = 7*7*263
f(93) = 205 = 5*41
f(94) = 13355 = 5*2671
f(95) = 1699 = 1699
f(96) = 13831 = 13831
f(97) = 1759 = 1759
f(98) = 14315 = 5*7*409
f(99) = 455 = 5*7*13
f(100) = 14807 = 13*17*67

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+48x+7

f(0)=7
f(1)=1
f(2)=107
f(3)=5
f(4)=43
f(5)=17
f(6)=331
f(7)=1
f(8)=13
f(9)=1
f(10)=587
f(11)=41
f(12)=727
f(13)=1
f(14)=1
f(15)=1
f(16)=1031
f(17)=139
f(18)=239
f(19)=1
f(20)=1367
f(21)=1
f(22)=1
f(23)=1
f(24)=347
f(25)=229
f(26)=1931
f(27)=127
f(28)=61
f(29)=1
f(30)=2347
f(31)=307
f(32)=151
f(33)=67
f(34)=1
f(35)=1
f(36)=433
f(37)=197
f(38)=131
f(39)=1
f(40)=3527
f(41)=457
f(42)=541
f(43)=1
f(44)=811
f(45)=1
f(46)=71
f(47)=1
f(48)=1
f(49)=1
f(50)=701
f(51)=79
f(52)=1
f(53)=1
f(54)=1103
f(55)=709
f(56)=1
f(57)=1
f(58)=1231
f(59)=1
f(60)=499
f(61)=1
f(62)=6827
f(63)=1
f(64)=1
f(65)=919
f(66)=443
f(67)=241
f(68)=1579
f(69)=101
f(70)=1181
f(71)=1
f(72)=8647
f(73)=1
f(74)=1
f(75)=577
f(76)=9431
f(77)=1
f(78)=281
f(79)=251
f(80)=10247
f(81)=1307
f(82)=10667
f(83)=1
f(84)=317
f(85)=1
f(86)=887
f(87)=113
f(88)=479
f(89)=1
f(90)=1
f(91)=1
f(92)=263
f(93)=1
f(94)=2671
f(95)=1699
f(96)=13831
f(97)=1759
f(98)=409
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+48x+7 could be written as f(y)= y^2-569 with x=y-24

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+24
f'(x)>2x+47

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

7, 1, 107, 5, 43, 17, 331, 1, 13, 1, 587, 41, 727, 1, 1, 1, 1031, 139, 239, 1, 1367, 1, 1, 1, 347, 229, 1931, 127, 61, 1, 2347, 307, 151, 67, 1, 1, 433, 197, 131, 1, 3527, 457, 541, 1, 811, 1, 71, 1, 1, 1, 701, 79, 1, 1, 1103, 709, 1, 1, 1231, 1, 499, 1, 6827, 1, 1, 919, 443, 241, 1579, 101, 1181, 1, 8647, 1, 1, 577, 9431, 1, 281, 251, 10247, 1307, 10667, 1, 317, 1, 887, 113, 479, 1, 1, 1, 263, 1, 2671, 1699, 13831, 1759, 409, 1, 1, 941, 15307, 389, 3163, 1, 2333, 1, 3371, 1, 17387, 2207, 1, 1, 739, 293, 19031, 1, 3919, 1, 1, 2557, 20747, 1, 1, 1, 1, 397, 4507, 571, 1, 733, 23767, 1, 1, 3089, 25031, 3169, 1, 1, 3761, 1, 26987, 683, 5531, 3499, 691, 1, 829, 367, 487, 1, 2339, 769, 1, 1, 1, 503, 383, 823, 33287, 601, 4861, 1, 1, 1, 35531, 1, 1, 1, 1, 2341, 37847, 1, 7727, 1, 1, 1, 619, 1, 41047, 2591, 5981, 1, 8539, 1, 431, 1, 1, 1, 1, 439, 2711, 1163, 9391, 1481, 6833, 1, 9743, 1229, 1, 6257, 2971, 1, 1, 1621, 1217, 6599, 10651, 1, 7741, 1, 55127, 1, 2243, 7069, 1, 1, 1657, 1, 58967, 929, 1, 1511, 1741, 1097, 3643, 1951, 1, 1, 4919, 1151, 9281, 1637, 1, 4157, 3943, 2111, 1, 1, 69127, 8707, 5399, 1, 14251, 641, 10333, 9109, 14683, 1, 74507, 4691, 1543, 1, 1, 743, 5987, 1, 15791, 1, 673, 1, 1889, 1, 659, 10369, 11933, 751, 1303, 1, 5051, 1, 1427, 313, 2521, 1, 89431, 1, 18127, 2281, 13121, 1, 7159, 1171, 18859, 1483, 95531, 1, 1, 1, 1607, 3083, 2309, 1249, 1, 1, 1289, 12809, 1, 1297, 797, 1, 15101, 2659, 1259, 1, 853, 1, 1, 1, 2707, 821, 112327, 1, 4547, 1021, 16433, 1, 23279, 2927, 9059, 1, 17021, 1, 24107, 7577, 121931, 15329, 1451, 1, 1, 7841, 1777, 1, 1, 373, 18433, 1, 1, 1, 131927, 8291, 133387, 1, 3853, 997, 10487, 1, 1, 1, 2843, 1, 1013, 3539, 28463, 1, 143831, 1291, 4153, 1, 11299, 18457, 8731, 1, 857, 1, 151531, 1, 1, 3847, 154667, 1, 1, 1, 31567, 1, 159431, 20029, 1, 1, 3967, 1277, 164267, 4127, 33179, 1, 1, 5261, 1, 1, 170827, 1, 1, 1, 1, 10937, 10343, 5521, 2731, 1, 25601, 1, 180907, 1, 36523, 11467, 1549, 3307, 1, 4673, 187787, 907, 1, 1, 1093, 24019, 193031, 24239, 38959, 1223, 28081, 1, 198347, 1, 3079, 1933, 1787, 1811, 5821, 1279, 1, 1, 207367, 1, 1, 1, 1, 1019, 1, 1069, 1, 3851, 30941, 2719, 43691, 1, 2789, 1627, 1, 1, 17239, 1, 226007, 2837, 1, 1, 32833, 1697, 46351, 2909, 233687, 7333, 1, 1, 1, 29819, 239531, 1879, 48299, 1, 34781, 30557, 3457, 1, 1, 15527, 2741, 1, 50287, 6311, 253447, 1871, 255467, 1, 1051, 1, 259531, 32569, 10463, 1, 2897, 1, 1, 1667, 53551, 33599, 1129, 1, 1, 1, 274007, 17191, 1, 1, 7949, 4987, 1423, 1, 3323, 1, 284587, 5101, 40961, 1439, 2311, 1, 1, 18257, 8377, 1, 6869, 37057, 4441, 3733, 1, 1, 43133, 37879, 4679, 1, 306347, 1201, 2593, 1, 1, 1, 313031, 1, 12611, 1, 45361, 1, 1447, 1, 1571, 569, 6619, 1453, 65323, 1, 7649, 41257, 331207, 1187, 1, 1609, 8191, 10531, 67631, 1, 1, 6101, 2617, 1, 13807, 21647, 20443, 1, 1, 1, 352267, 22091, 354647, 1, 1, 6397, 21143, 1, 72367, 2269, 28019, 1, 1, 1, 73819, 1, 1, 23297, 2137, 1, 3727, 47207, 3541, 1, 5867, 1, 54833, 1, 77263, 9689, 22871, 48757, 55901, 1, 1, 6173, 1, 3823, 1, 1429, 3373, 12583, 5113, 1, 1, 50969, 1, 1, 1, 1, 31859, 12983, 1, 1493, 11981, 52579, 1, 1, 1, 5323, 1, 1, 2543, 1, 5087, 27107, 1, 1, 1, 1, 1567, 55207, 442987, 2777, 1, 1, 34487, 56209, 90203, 1, 453707, 1, 1, 2861, 91823, 57559, 1, 57899, 1, 1, 1, 1723, 3701, 2357, 18911, 8467, 67933, 1, 1, 1499, 481067, 4639, 1, 1733, 97327, 1, 489431, 30677, 5791, 1, 10103, 62057, 497867, 1, 7703, 1, 71933, 1, 4051, 2539, 509227, 1, 11909, 1, 14713, 3797, 517831, 4993, 8011, 1, 1, 1, 30971, 1, 105883, 66359, 532331, 2383, 1, 6709, 41399, 5189, 1, 2713, 3109, 4871, 1867, 1, 1, 1, 13487, 9901, 1847, 1, 8599, 35027, 561931, 70429, 16141, 1, 567947, 35591, 570967, 1789, 114799, 1, 1, 5563, 23203, 1, 583127, 36541, 1709, 2099, 117851, 73849, 34843, 37117, 119083, 1, 6577, 1, 601607, 1, 120943, 9473, 1, 5441, 1721, 15313, 10067, 1877, 1, 1, 1, 1, 623531, 78139, 125339, 1, 1, 2819, 1, 7933, 127247, 6133, 1, 11447, 1, 8053, 37991, 20233, 1, 16267, 18637, 11677, 655531, 1, 2027, 1, 1, 1693, 1, 16673, 133711, 41887, 671831, 1, 19289, 2417, 678407, 1, 1, 4271, 8059, 6131, 1, 86249, 3217, 17333, 694987, 43541, 99761, 1, 1, 6763, 705031, 88339, 141679, 1, 101681, 1, 1, 17921, 1, 1, 1, 1, 11159, 1, 728747, 1, 2917, 2621, 21017, 23041, 739031, 1, 1747, 1, 1, 1, 2441, 1, 150571, 23581, 756331, 13537, 1, 1, 763307, 1, 766807, 1, 1, 1, 773831, 1, 1, 9739, 780887, 1, 112061, 3931, 1, 5807, 60887, 1907, 22717, 1, 798667, 100057, 1, 20101, 161167, 7211, 16519, 1, 1, 1, 62819, 1, 1, 1, 4019, 51607, 1, 103669, 33247, 1, 1, 52291, 64499, 1, 3917, 105499, 120833, 15137, 2393, 1, 1, 53441, 1979, 3067, 1, 8293, 3911, 1, 1, 5437, 124541, 15601, 3329, 1, 35171, 1, 1, 7901, 1949, 1, 11273, 1, 1, 1, 1, 1, 901931, 112979, 2293, 22691, 909547, 1, 10037, 1, 183439, 114889, 921031, 2683, 1, 1, 54631, 1, 932587, 1, 14407, 1, 134333, 14723, 188843, 11827, 1, 118757, 1, 3407, 4663, 1, 959831, 1, 14827, 3449, 138241, 1987, 7417, 1, 39023, 1, 3413, 1, 196699, 1, 5843, 1, 991447, 1, 1, 124679, 999431, 1, 1, 1, 3347, 9013, 1, 1, 1, 127189, 1019531, 1, 5849, 1, 7393, 1, 1, 1, 1, 1, 79987, 5009, 1, 1,

6. Sequence of the polynom (only primes)

7, 107, 5, 43, 17, 331, 13, 587, 41, 727, 1031, 139, 239, 1367, 347, 229, 1931, 127, 61, 2347, 307, 151, 67, 433, 197, 131, 3527, 457, 541, 811, 71, 701, 79, 1103, 709, 1231, 499, 6827, 919, 443, 241, 1579, 101, 1181, 8647, 577, 9431, 281, 251, 10247, 1307, 10667, 317, 887, 113, 479, 263, 2671, 1699, 13831, 1759, 409, 941, 15307, 389, 3163, 2333, 3371, 17387, 2207, 739, 293, 19031, 3919, 2557, 20747, 397, 4507, 571, 733, 23767, 3089, 25031, 3169, 3761, 26987, 683, 5531, 3499, 691, 829, 367, 487, 2339, 769, 503, 383, 823, 33287, 601, 4861, 35531, 2341, 37847, 7727, 619, 41047, 2591, 5981, 8539, 431, 439, 2711, 1163, 9391, 1481, 6833, 9743, 1229, 6257, 2971, 1621, 1217, 6599, 10651, 7741, 55127, 2243, 7069, 1657, 58967, 929, 1511, 1741, 1097, 3643, 1951, 4919, 1151, 9281, 1637, 4157, 3943, 2111, 69127, 8707, 5399, 14251, 641, 10333, 9109, 14683, 74507, 4691, 1543, 743, 5987, 15791, 673, 1889, 659, 10369, 11933, 751, 1303, 5051, 1427, 313, 2521, 89431, 18127, 2281, 13121, 7159, 1171, 18859, 1483, 95531, 1607, 3083, 2309, 1249, 1289, 12809, 1297, 797, 15101, 2659, 1259, 853, 2707, 821, 112327, 4547, 1021, 16433, 23279, 2927, 9059, 17021, 24107, 7577, 121931, 15329, 1451, 7841, 1777, 373, 18433, 131927, 8291, 133387, 3853, 997, 10487, 2843, 1013, 3539, 28463, 143831, 1291, 4153, 11299, 18457, 8731, 857, 151531, 3847, 154667, 31567, 159431, 20029, 3967, 1277, 164267, 4127, 33179, 5261, 170827, 10937, 10343, 5521, 2731, 25601, 180907, 36523, 11467, 1549, 3307, 4673, 187787, 907, 1093, 24019, 193031, 24239, 38959, 1223, 28081, 198347, 3079, 1933, 1787, 1811, 5821, 1279, 207367, 1019, 1069, 3851, 30941, 2719, 43691, 2789, 1627, 17239, 226007, 2837, 32833, 1697, 46351, 2909, 233687, 7333, 29819, 239531, 1879, 48299, 34781, 30557, 3457, 15527, 2741, 50287, 6311, 253447, 1871, 255467, 1051, 259531, 32569, 10463, 2897, 1667, 53551, 33599, 1129, 274007, 17191, 7949, 4987, 1423, 3323, 284587, 5101, 40961, 1439, 2311, 18257, 8377, 6869, 37057, 4441, 3733, 43133, 37879, 4679, 306347, 1201, 2593, 313031, 12611, 45361, 1447, 1571, 569, 6619, 1453, 65323, 7649, 41257, 331207, 1187, 1609, 8191, 10531, 67631, 6101, 2617, 13807, 21647, 20443, 352267, 22091, 354647, 6397, 21143, 72367, 2269, 28019, 73819, 23297, 2137, 3727, 47207, 3541, 5867, 54833, 77263, 9689, 22871, 48757, 55901, 6173, 3823, 1429, 3373, 12583, 5113, 50969, 31859, 12983, 1493, 11981, 52579, 5323, 2543, 5087, 27107, 1567, 55207, 442987, 2777, 34487, 56209, 90203, 453707, 2861, 91823, 57559, 57899, 1723, 3701, 2357, 18911, 8467, 67933, 1499, 481067, 4639, 1733, 97327, 489431, 30677, 5791, 10103, 62057, 497867, 7703, 71933, 4051, 2539, 509227, 11909, 14713, 3797, 517831, 4993, 8011, 30971, 105883, 66359, 532331, 2383, 6709, 41399, 5189, 2713, 3109, 4871, 1867, 13487, 9901, 1847, 8599, 35027, 561931, 70429, 16141, 567947, 35591, 570967, 1789, 114799, 5563, 23203, 583127, 36541, 1709, 2099, 117851, 73849, 34843, 37117, 119083, 6577, 601607, 120943, 9473, 5441, 1721, 15313, 10067, 1877, 623531, 78139, 125339, 2819, 7933, 127247, 6133, 11447, 8053, 37991, 20233, 16267, 18637, 11677, 655531, 2027, 1693, 16673, 133711, 41887, 671831, 19289, 2417, 678407, 4271, 8059, 6131, 86249, 3217, 17333, 694987, 43541, 99761, 6763, 705031, 88339, 141679, 101681, 17921, 11159, 728747, 2917, 2621, 21017, 23041, 739031, 1747, 2441, 150571, 23581, 756331, 13537, 763307, 766807, 773831, 9739, 780887, 112061, 3931, 5807, 60887, 1907, 22717, 798667, 100057, 20101, 161167, 7211, 16519, 62819, 4019, 51607, 103669, 33247, 52291, 64499, 3917, 105499, 120833, 15137, 2393, 53441, 1979, 3067, 8293, 3911, 5437, 124541, 15601, 3329, 35171, 7901, 1949, 11273, 901931, 112979, 2293, 22691, 909547, 10037, 183439, 114889, 921031, 2683, 54631, 932587, 14407, 134333, 14723, 188843, 11827, 118757, 3407, 4663, 959831, 14827, 3449, 138241, 1987, 7417, 39023, 3413, 196699, 5843, 991447, 124679, 999431, 3347, 9013, 127189, 1019531, 5849, 7393, 79987, 5009,

7. Distribution of the primes

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

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)
1106510.6000000.5000000.1000000.0000000.0000000.000000
21005631250.5600000.3100000.2500009.3333336.20000025.000000
31.0006012113900.6010000.2110000.39000010.7321426.80645215.600000
410.0006.3401.4854.8550.6340000.1485000.48550010.5490857.03791512.448718
5100.00064.61211.35953.2530.6461200.1135900.53253010.1911677.64915810.968692
61.000.000654.02491.225562.7990.6540240.0912250.56279910.1223318.03107610.568399
710.000.0006.598.552763.7025.834.8500.6598550.0763700.58348510.0891598.37163110.367556
8100.000.00066.408.9536.574.80059.834.1530.6640900.0657480.59834210.0641718.60911810.254617
91.000.000.000667.341.21157.734.277609.606.9340.6673410.0577340.60960710.0489658.78114610.188277
1010.000.000.0006.699.431.708514.420.9586.185.010.7500.6699430.0514420.61850110.0389918.91014910.145900


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
385410.6250000.5000000.1250001.6666672.0000001.000000
4169810.5625000.5000000.0625001.8000002.0000001.000000
532201550.6250000.4687500.1562502.2222221.8750005.000000
6643420140.5312500.3125000.2187501.7000001.3333332.800000
71287239330.5625000.3046880.2578122.1176471.9500002.357143
825615169820.5898440.2695310.3203122.0972221.7692312.484848
95123081191890.6015620.2324220.3691412.0397351.7246382.304878
101.0246142153990.5996090.2099610.3896481.9935071.8067232.111111
112.0481.2733848890.6215820.1875000.4340822.0732901.7860472.228070
124.0962.5636891.8740.6257320.1682130.4575202.0133541.7942712.107986
138.1925.1771.2493.9280.6319580.1524660.4794922.0198991.8127722.096051
1416.38410.4182.2898.1290.6358640.1397090.4961552.0123621.8326662.069501
1532.76820.9894.22216.7670.6405330.1288450.5116882.0146861.8444742.062615
1665.53642.1837.82934.3540.6436610.1194610.5242002.0097671.8543342.048906
17131.07284.80914.42670.3830.6470410.1100620.5369802.0105021.8426362.048757
18262.144170.33626.905143.4310.6497800.1026340.5471462.0084661.8650352.037864
19524.288341.95750.548291.4090.6522310.0964130.5558192.0075441.8787592.031702
201.048.576686.03995.278590.7610.6542580.0908640.5633942.0062141.8849022.027257
212.097.1521.375.893180.2401.195.6530.6560770.0859450.5701322.0055611.8917272.023920
224.194.3042.759.712341.3922.418.3200.6579670.0813940.5765722.0057611.8940972.022593
238.388.6085.531.964648.4584.883.5060.6594610.0773020.5821592.0045441.8994532.019380
2416.777.21611.087.6611.236.9779.850.6840.6608760.0737300.5871472.0042901.9075672.017133
2533.554.43222.220.9522.361.48219.859.4700.6622360.0703780.5918582.0041151.9090752.016050
2667.108.86444.523.0784.522.10040.000.9780.6634460.0673850.5960612.0036531.9149422.014202
27134.217.72889.193.5038.671.20580.522.2980.6645430.0646060.5999382.0033091.9175172.013008
28268.435.456178.663.32416.660.576162.002.7480.6655730.0620650.6035072.0030981.9213682.011899
29536.870.912357.842.53632.053.721325.788.8150.6665340.0597050.6068292.0028871.9239262.011008
301.073.741.824716.646.67061.758.112654.888.5580.6674290.0575170.6099132.0026871.9267072.010163
312.147.483.6481.435.092.186119.136.4281.315.955.7580.6682670.0554770.6127902.0025101.9290822.009434
324.294.967.2962.873.550.531230.144.4272.643.406.1040.6690510.0535850.6154662.0023461.9317722.008735
338.589.934.5925.753.426.632445.078.9215.308.347.7110.6697870.0518140.6179732.0022011.9339112.008147
3417.179.869.18411.518.752.397861.729.32810.657.023.0690.6704800.0501590.6203202.0020681.9361272.007597


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
122110101
242110101
384221201
4168352303
53215872715
6642010103836
7128391920514614
825669313810201227
9512119526719401743
101.0242159911636732977
112.0483841742105413751142
124.0966893163739225096251
138.1921.249564685173457169450
1416.3842.2891.0231.266305846302836
1532.7684.2221.8772.3455571.5935461.526
1665.5367.8293.5054.3241.0252.9381.0332.833
17131.07214.4266.5217.9051.8915.3511.9015.283
18262.14426.90512.16814.7373.6129.9103.5889.795
19524.28850.54822.87227.6766.73018.5806.72618.512
201.048.57695.27843.06152.21712.66635.10412.57634.932
212.097.152180.24081.05699.18423.91766.44823.72866.147
224.194.304341.392153.381188.01145.066125.78644.878125.662
238.388.608648.458291.062357.39685.092239.10885.275238.983
2416.777.2161.236.977555.090681.887161.990456.339162.159456.489
2533.554.4322.361.4821.059.5061.301.976308.798871.915308.736872.033
2667.108.8644.522.1002.028.0922.494.008589.0421.670.777590.4181.671.863
27134.217.7288.671.2053.888.0634.783.1421.128.6553.206.1471.128.6263.207.777
28268.435.45616.660.5767.466.3919.194.1852.164.4916.164.5232.165.6756.165.887
29536.870.91232.053.72114.361.46917.692.2524.158.89611.866.8234.161.00911.866.993
301.073.741.82461.758.11227.658.71334.099.3998.001.81922.874.7728.005.28122.876.240
312.147.483.648119.136.42853.340.67365.795.75515.418.65944.147.10315.421.65744.149.009
324.294.967.296230.144.427103.010.610127.133.81729.750.95085.322.23629.759.89885.311.343
338.589.934.592445.078.921199.167.389245.911.53257.476.054165.051.49757.494.071165.057.299
3417.179.869.184861.729.328385.534.066476.195.262111.175.440319.679.961111.188.346319.685.581


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
241100100
381100100
4161100100
5325320212
66414951634
712833171631389
825682414112281626
9512189939634614054
101.0243991992007612194108
112.048889446443199243214233
124.0961.874948926430517435492
138.1923.9281.9621.9669081.0829171.021
1416.3848.1294.0284.1011.9462.1741.8942.115
1532.76816.7678.3538.4144.0194.4393.9474.362
1665.53634.35417.24017.1148.2188.9988.1748.964
17131.07270.38335.19935.18416.91918.27016.76018.434
18262.144143.43171.78271.64934.58837.04334.48937.311
19524.288291.409145.953145.45670.18175.42470.56375.241
201.048.576590.761295.840294.921142.669152.752143.277152.063
212.097.1521.195.653599.128596.525289.260308.665290.035307.693
224.194.3042.418.3201.211.8571.206.463586.142622.638587.184622.356
238.388.6084.883.5062.447.9902.435.5161.186.5681.253.8481.187.3161.255.774
2416.777.2169.850.6844.938.0154.912.6692.398.0592.527.3192.398.1752.527.131
2533.554.43219.859.4709.955.3169.904.1544.842.5415.087.5224.841.4925.087.915
2667.108.86440.000.97820.040.83719.960.1419.765.15310.236.7669.766.06410.232.995
27134.217.72880.522.29840.332.55340.189.74519.677.71020.580.18019.684.22820.580.180
28268.435.456162.002.74881.147.19180.855.55739.634.00741.360.01839.644.10341.364.620
29536.870.912325.788.815163.177.794162.611.02179.784.28083.103.20779.798.76983.102.559
301.073.741.824654.888.558328.001.699326.886.859160.510.654166.924.508160.529.575166.923.821
312.147.483.6481.315.955.758659.067.840656.887.918322.799.824335.184.253322.816.128335.155.553
324.294.967.2962.643.406.1041.323.834.7441.319.571.360648.916.357672.794.812648.927.938672.766.997
338.589.934.5925.308.347.7112.658.325.6332.650.022.0781.303.972.6371.350.201.9841.304.007.4131.350.165.677
3417.179.869.18410.657.023.0695.336.537.0545.320.486.0152.619.489.7562.709.036.1192.619.507.8772.708.989.317


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 1, 107, 5, 43, 17, 331, 1, 13, 1, 587, 41, 727, 1, 1, 1, 1031, 139, 239, 1,
Found in Database : 7, 107, 5, 43, 17, 331, 13, 587, 41, 727, 1031, 139, 239, 1367, 347, 229, 1931, 127, 61, 2347, 307, 151, 67, 433, 197, 131,
Found in Database : 5, 7, 13, 17, 41, 43, 61, 67, 71, 79, 101, 107, 113, 127, 131, 139,