Inhaltsverzeichnis

Development of
Algorithmic Constructions

23:42:52
Deutsch
19.Apr 2024

Polynom = x^2+296x-89

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) = 89 = 89
f(1) = 13 = 13
f(2) = 507 = 3*13*13
f(3) = 101 = 101
f(4) = 1111 = 11*101
f(5) = 177 = 3*59
f(6) = 1723 = 1723
f(7) = 127 = 127
f(8) = 2343 = 3*11*71
f(9) = 83 = 83
f(10) = 2971 = 2971
f(11) = 411 = 3*137
f(12) = 3607 = 3607
f(13) = 491 = 491
f(14) = 4251 = 3*13*109
f(15) = 143 = 11*13
f(16) = 4903 = 4903
f(17) = 327 = 3*109
f(18) = 5563 = 5563
f(19) = 737 = 11*67
f(20) = 6231 = 3*31*67
f(21) = 821 = 821
f(22) = 6907 = 6907
f(23) = 453 = 3*151
f(24) = 7591 = 7591
f(25) = 31 = 31
f(26) = 8283 = 3*11*251
f(27) = 1079 = 13*83
f(28) = 8983 = 13*691
f(29) = 1167 = 3*389
f(30) = 9691 = 11*881
f(31) = 157 = 157
f(32) = 10407 = 3*3469
f(33) = 673 = 673
f(34) = 11131 = 11131
f(35) = 1437 = 3*479
f(36) = 11863 = 11863
f(37) = 1529 = 11*139
f(38) = 12603 = 3*4201
f(39) = 811 = 811
f(40) = 13351 = 13*13*79
f(41) = 429 = 3*11*13
f(42) = 14107 = 14107
f(43) = 1811 = 1811
f(44) = 14871 = 3*4957
f(45) = 1907 = 1907
f(46) = 15643 = 15643
f(47) = 501 = 3*167
f(48) = 16423 = 11*1493
f(49) = 1051 = 1051
f(50) = 17211 = 3*5737
f(51) = 2201 = 31*71
f(52) = 18007 = 11*1637
f(53) = 2301 = 3*13*59
f(54) = 18811 = 13*1447
f(55) = 1201 = 1201
f(56) = 19623 = 3*31*211
f(57) = 313 = 313
f(58) = 20443 = 20443
f(59) = 2607 = 3*11*79
f(60) = 21271 = 89*239
f(61) = 2711 = 2711
f(62) = 22107 = 3*7369
f(63) = 11 = 11
f(64) = 22951 = 59*389
f(65) = 1461 = 3*487
f(66) = 23803 = 13*1831
f(67) = 3029 = 13*233
f(68) = 24663 = 3*8221
f(69) = 3137 = 3137
f(70) = 25531 = 11*11*211
f(71) = 1623 = 3*541
f(72) = 26407 = 26407
f(73) = 839 = 839
f(74) = 27291 = 3*11*827
f(75) = 3467 = 3467
f(76) = 28183 = 28183
f(77) = 3579 = 3*1193
f(78) = 29083 = 127*229
f(79) = 923 = 13*71
f(80) = 29991 = 3*13*769
f(81) = 1903 = 11*173
f(82) = 30907 = 31*997
f(83) = 3921 = 3*1307
f(84) = 31831 = 139*229
f(85) = 4037 = 11*367
f(86) = 32763 = 3*67*163
f(87) = 2077 = 31*67
f(88) = 33703 = 33703
f(89) = 267 = 3*89
f(90) = 34651 = 34651
f(91) = 4391 = 4391
f(92) = 35607 = 3*11*13*83
f(93) = 4511 = 13*347
f(94) = 36571 = 36571
f(95) = 579 = 3*193
f(96) = 37543 = 11*3413
f(97) = 2377 = 2377
f(98) = 38523 = 3*12841
f(99) = 4877 = 4877
f(100) = 39511 = 39511

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+296x-89

f(0)=89
f(1)=13
f(2)=3
f(3)=101
f(4)=11
f(5)=59
f(6)=1723
f(7)=127
f(8)=71
f(9)=83
f(10)=2971
f(11)=137
f(12)=3607
f(13)=491
f(14)=109
f(15)=1
f(16)=4903
f(17)=1
f(18)=5563
f(19)=67
f(20)=31
f(21)=821
f(22)=6907
f(23)=151
f(24)=7591
f(25)=1
f(26)=251
f(27)=1
f(28)=691
f(29)=389
f(30)=881
f(31)=157
f(32)=3469
f(33)=673
f(34)=11131
f(35)=479
f(36)=11863
f(37)=139
f(38)=4201
f(39)=811
f(40)=79
f(41)=1
f(42)=14107
f(43)=1811
f(44)=4957
f(45)=1907
f(46)=15643
f(47)=167
f(48)=1493
f(49)=1051
f(50)=5737
f(51)=1
f(52)=1637
f(53)=1
f(54)=1447
f(55)=1201
f(56)=211
f(57)=313
f(58)=20443
f(59)=1
f(60)=239
f(61)=2711
f(62)=7369
f(63)=1
f(64)=1
f(65)=487
f(66)=1831
f(67)=233
f(68)=8221
f(69)=3137
f(70)=1
f(71)=541
f(72)=26407
f(73)=839
f(74)=827
f(75)=3467
f(76)=28183
f(77)=1193
f(78)=229
f(79)=1
f(80)=769
f(81)=173
f(82)=997
f(83)=1307
f(84)=1
f(85)=367
f(86)=163
f(87)=1
f(88)=33703
f(89)=1
f(90)=34651
f(91)=4391
f(92)=1
f(93)=347
f(94)=36571
f(95)=193
f(96)=3413
f(97)=2377
f(98)=12841
f(99)=4877

b) Substitution of the polynom
The polynom f(x)=x^2+296x-89 could be written as f(y)= y^2-21993 with x=y-148

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+148
f'(x)>2x+295

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

89, 13, 3, 101, 11, 59, 1723, 127, 71, 83, 2971, 137, 3607, 491, 109, 1, 4903, 1, 5563, 67, 31, 821, 6907, 151, 7591, 1, 251, 1, 691, 389, 881, 157, 3469, 673, 11131, 479, 11863, 139, 4201, 811, 79, 1, 14107, 1811, 4957, 1907, 15643, 167, 1493, 1051, 5737, 1, 1637, 1, 1447, 1201, 211, 313, 20443, 1, 239, 2711, 7369, 1, 1, 487, 1831, 233, 8221, 3137, 1, 541, 26407, 839, 827, 3467, 28183, 1193, 229, 1, 769, 173, 997, 1307, 1, 367, 163, 1, 33703, 1, 34651, 4391, 1, 347, 36571, 193, 3413, 2377, 12841, 4877, 39511, 1667, 40507, 1, 1, 1, 3271, 1, 43543, 5507, 179, 1409, 773, 1, 4241, 5897, 15901, 6029, 1, 1, 49831, 787, 1, 1, 51991, 199, 1, 419, 18061, 311, 55291, 1, 4339, 7121, 1, 3631, 5333, 617, 757, 7547, 1847, 7691, 359, 653, 1, 307, 21481, 739, 1, 1, 941, 383, 22669, 1, 1033, 2909, 70423, 683, 1, 1129, 72871, 1531, 6737, 9341, 25117, 9497, 76603, 1609, 77863, 223, 2029, 1, 80407, 1, 1, 1, 1, 5227, 947, 3539, 1, 10781, 1, 421, 1, 463, 89563, 11279, 1, 11447, 92251, 1, 93607, 1, 31657, 1087, 7411, 1, 1237, 6151, 33037, 3119, 9137, 4217, 457, 1, 1, 3251, 104743, 1, 8167, 431, 35869, 1231, 1, 2287, 110503, 1, 37321, 14087, 1693, 1, 8839, 1, 3527, 7321, 117883, 4943, 10853, 15017, 1, 7603, 1123, 1283, 123931, 1, 3217, 509, 1427, 1, 128551, 1, 1399, 16361, 131671, 5519, 12113, 8377, 3457, 1, 12401, 5717, 138007, 17351, 269, 1097, 141223, 1, 1721, 17957, 48157, 1, 11239, 3061, 2081, 4643, 49801, 1, 443, 6329, 937, 4799, 4679, 1, 12007, 503, 1901, 1, 53161, 911, 449, 1, 162907, 1861, 54877, 1, 166363, 1, 1, 1, 5147, 21341, 2417, 7187, 15761, 10891, 1, 5501, 176923, 1, 1, 1, 60169, 5669, 5881, 1, 1823, 1, 61981, 23357, 1049, 3931, 1567, 1, 4909, 1, 17573, 8093, 195163, 1, 65677, 12373, 1, 1, 1009, 1, 5197, 1, 204583, 2141, 6661, 25931, 547, 26171, 19121, 1, 1, 13327, 6491, 2069, 1279, 1, 218107, 13693, 1, 1, 222043, 9293, 3797, 2557, 75337, 3547, 17539, 1, 3433, 1, 1, 29129, 234043, 1, 1951, 1, 571, 1, 240151, 1, 601, 1, 81421, 15331, 1, 1, 248407, 31181, 83497, 1, 252583, 1321, 1, 2459, 85597, 1, 23537, 677, 261031, 16381, 87721, 33029, 2089, 1, 267451, 1291, 1, 1, 271771, 11369, 273943, 1109, 92041, 8663, 25301, 5821, 280507, 35201, 659, 2729, 4013, 1, 2843, 563, 96457, 3301, 1789, 12197, 643, 1, 1, 1429, 1, 12479, 300631, 1, 1, 613, 3677, 3191, 27953, 1, 3331, 38867, 24007, 1, 314407, 1, 1487, 1, 2113, 1213, 321403, 20161, 1, 5077, 3929, 1, 2297, 1, 110281, 1297, 30293, 6967, 3079, 42101, 1, 1, 1, 647, 26371, 1, 733, 1, 347671, 14537, 350107, 10979, 117517, 22111, 1, 14843, 1997, 3449, 1, 22573, 362407, 1, 364891, 45767, 1, 1, 1753, 1933, 1, 1, 9613, 3617, 661, 1, 379963, 23827, 1, 1, 12421, 16097, 1, 48611, 130057, 1, 30211, 8209, 395323, 4507, 132637, 1, 2551, 761, 1, 1, 135241, 1, 1, 1, 37361, 3221, 137869, 25933, 1, 1, 13513, 52529, 140521, 26431, 424231, 1, 32839, 1, 143197, 1, 1607, 4517, 1733, 27271, 145897, 54881, 40037, 1, 1, 2137, 1, 1747, 1877, 18749, 751, 56591, 1, 1, 456871, 9547, 1, 1, 1, 57977, 465211, 9721, 1, 14669, 1, 1, 7069, 19793, 43313, 1, 12289, 2311, 4423, 20147, 484951, 5527, 162601, 30577, 490663, 1, 493531, 61871, 165469, 4787, 1, 1, 1, 31477, 5431, 63317, 46181, 21227, 510907, 1, 2903, 16103, 1, 1, 519703, 65147, 2099, 1489, 525607, 1, 5939, 1, 1, 66629, 48593, 859, 1, 4211, 1, 67751, 1, 22709, 546523, 8563, 2207, 1, 5471, 23087, 1, 1, 6007, 1, 561703, 5867, 857, 1, 17207, 71171, 8521, 1, 52181, 2767, 14797, 1, 580183, 24239, 583291, 3323, 195469, 9187, 589531, 2239, 592663, 74279, 15277, 1, 1, 12511, 1, 1, 201757, 2447, 55313, 1, 1, 19163, 919, 5927, 1, 2347, 10529, 19463, 208141, 3557, 627643, 1, 630871, 1, 211369, 39733, 4457, 1, 853, 80279, 1, 80687, 647131, 1, 8233, 1, 1, 1, 21193, 2111, 3907, 3761, 221197, 20789, 2657, 1, 670231, 83987, 20411, 21101, 676903, 1, 1, 1, 227869, 85661, 686971, 14347, 5039, 983, 231241, 86927, 697111, 2647, 1, 1, 18049, 44101, 1, 953, 64613, 89057, 2357, 1, 1, 1, 721051, 1, 1, 6983, 10253, 1, 1993, 45823, 1, 1, 738391, 30839, 741883, 46477, 248461, 1, 5237, 31277, 5413, 3041, 22907, 11839, 759463, 15859, 1, 95597, 255517, 8731, 59239, 1, 907, 2203, 1, 97379, 780823, 32609, 784411, 1, 23879, 49363, 1, 2543, 1, 1, 266281, 1, 802471, 1, 806107, 9181, 8707, 1, 3491, 1, 62851, 1, 3463, 1, 1, 1, 1, 51871, 277261, 1, 1, 1, 7699, 8087, 21613, 26399, 2011, 1, 1973, 1, 284701, 1, 857851, 17911, 3203, 3373, 22189, 1, 1, 36293, 872923, 13669, 1, 1, 3779, 36767, 884311, 110777, 296041, 1, 68611, 9311, 895771, 1, 2969, 112691, 903451, 9431, 5779, 56827, 27611, 1, 1, 2939, 83537, 1, 4591, 14449, 1, 38693, 930583, 10597, 3943, 1, 13217, 1, 1, 118037, 315421, 118529, 4261, 1, 1, 29879, 1, 120011, 7951, 40169, 74311, 1, 323341, 1, 1, 3697, 978007, 122501, 327337, 5591, 986023, 1, 990043, 9539, 1, 1, 2927, 5209, 1002151, 62761, 30491, 1, 1010263, 42179, 1014331, 1, 26113, 1, 1022491, 42689, 1026583, 11689, 343561, 1, 1034791, 21601, 6221, 130121, 31607, 1, 1, 21859, 3083, 1, 1, 1, 1153, 1, 1063771, 1, 2803, 66877, 82471, 1, 5101, 1, 360169, 1, 1084711, 11321, 98993, 136379, 1, 1, 99761, 1, 1, 1, 1, 138497, 1110103, 1, 8017, 2251, 372877, 1, 1, 46877, 2797, 10859, 2753, 17713, 1, 1, 1140091, 1, 34679, 1, 1148731, 23977, 1153063, 2777, 1, 13177, 13997, 48497, 1166107, 3319, 390157, 73291, 6791, 49043, 1179223, 2503, 1, 5701, 1188007, 6199, 108401, 4817, 398941, 2237, 17929, 1, 6247, 6863, 403369, 11657, 93427, 1, 1219003, 1, 407821, 38303, 8963, 51257, 1, 1, 5807, 38723, 8681, 1, 1245883, 1, 416797, 5051, 1254907, 2381, 1, 9857, 13591, 14389, 16057, 4073, 97927, 19927, 425869, 1, 1, 1, 4111, 2731, 1, 1,

6. Sequence of the polynom (only primes)

89, 13, 3, 101, 11, 59, 1723, 127, 71, 83, 2971, 137, 3607, 491, 109, 4903, 5563, 67, 31, 821, 6907, 151, 7591, 251, 691, 389, 881, 157, 3469, 673, 11131, 479, 11863, 139, 4201, 811, 79, 14107, 1811, 4957, 1907, 15643, 167, 1493, 1051, 5737, 1637, 1447, 1201, 211, 313, 20443, 239, 2711, 7369, 487, 1831, 233, 8221, 3137, 541, 26407, 839, 827, 3467, 28183, 1193, 229, 769, 173, 997, 1307, 367, 163, 33703, 34651, 4391, 347, 36571, 193, 3413, 2377, 12841, 4877, 39511, 1667, 40507, 3271, 43543, 5507, 179, 1409, 773, 4241, 5897, 15901, 6029, 49831, 787, 51991, 199, 419, 18061, 311, 55291, 4339, 7121, 3631, 5333, 617, 757, 7547, 1847, 7691, 359, 653, 307, 21481, 739, 941, 383, 22669, 1033, 2909, 70423, 683, 1129, 72871, 1531, 6737, 9341, 25117, 9497, 76603, 1609, 77863, 223, 2029, 80407, 5227, 947, 3539, 10781, 421, 463, 89563, 11279, 11447, 92251, 93607, 31657, 1087, 7411, 1237, 6151, 33037, 3119, 9137, 4217, 457, 3251, 104743, 8167, 431, 35869, 1231, 2287, 110503, 37321, 14087, 1693, 8839, 3527, 7321, 117883, 4943, 10853, 15017, 7603, 1123, 1283, 123931, 3217, 509, 1427, 128551, 1399, 16361, 131671, 5519, 12113, 8377, 3457, 12401, 5717, 138007, 17351, 269, 1097, 141223, 1721, 17957, 48157, 11239, 3061, 2081, 4643, 49801, 443, 6329, 937, 4799, 4679, 12007, 503, 1901, 53161, 911, 449, 162907, 1861, 54877, 166363, 5147, 21341, 2417, 7187, 15761, 10891, 5501, 176923, 60169, 5669, 5881, 1823, 61981, 23357, 1049, 3931, 1567, 4909, 17573, 8093, 195163, 65677, 12373, 1009, 5197, 204583, 2141, 6661, 25931, 547, 26171, 19121, 13327, 6491, 2069, 1279, 218107, 13693, 222043, 9293, 3797, 2557, 75337, 3547, 17539, 3433, 29129, 234043, 1951, 571, 240151, 601, 81421, 15331, 248407, 31181, 83497, 252583, 1321, 2459, 85597, 23537, 677, 261031, 16381, 87721, 33029, 2089, 267451, 1291, 271771, 11369, 273943, 1109, 92041, 8663, 25301, 5821, 280507, 35201, 659, 2729, 4013, 2843, 563, 96457, 3301, 1789, 12197, 643, 1429, 12479, 300631, 613, 3677, 3191, 27953, 3331, 38867, 24007, 314407, 1487, 2113, 1213, 321403, 20161, 5077, 3929, 2297, 110281, 1297, 30293, 6967, 3079, 42101, 647, 26371, 733, 347671, 14537, 350107, 10979, 117517, 22111, 14843, 1997, 3449, 22573, 362407, 364891, 45767, 1753, 1933, 9613, 3617, 661, 379963, 23827, 12421, 16097, 48611, 130057, 30211, 8209, 395323, 4507, 132637, 2551, 761, 135241, 37361, 3221, 137869, 25933, 13513, 52529, 140521, 26431, 424231, 32839, 143197, 1607, 4517, 1733, 27271, 145897, 54881, 40037, 2137, 1747, 1877, 18749, 751, 56591, 456871, 9547, 57977, 465211, 9721, 14669, 7069, 19793, 43313, 12289, 2311, 4423, 20147, 484951, 5527, 162601, 30577, 490663, 493531, 61871, 165469, 4787, 31477, 5431, 63317, 46181, 21227, 510907, 2903, 16103, 519703, 65147, 2099, 1489, 525607, 5939, 66629, 48593, 859, 4211, 67751, 22709, 546523, 8563, 2207, 5471, 23087, 6007, 561703, 5867, 857, 17207, 71171, 8521, 52181, 2767, 14797, 580183, 24239, 583291, 3323, 195469, 9187, 589531, 2239, 592663, 74279, 15277, 12511, 201757, 2447, 55313, 19163, 919, 5927, 2347, 10529, 19463, 208141, 3557, 627643, 630871, 211369, 39733, 4457, 853, 80279, 80687, 647131, 8233, 21193, 2111, 3907, 3761, 221197, 20789, 2657, 670231, 83987, 20411, 21101, 676903, 227869, 85661, 686971, 14347, 5039, 983, 231241, 86927, 697111, 2647, 18049, 44101, 953, 64613, 89057, 2357, 721051, 6983, 10253, 1993, 45823, 738391, 30839, 741883, 46477, 248461, 5237, 31277, 5413, 3041, 22907, 11839, 759463, 15859, 95597, 255517, 8731, 59239, 907, 2203, 97379, 780823, 32609, 784411, 23879, 49363, 2543, 266281, 802471, 806107, 9181, 8707, 3491, 62851, 3463, 51871, 277261, 7699, 8087, 21613, 26399, 2011, 1973, 284701, 857851, 17911, 3203, 3373, 22189, 36293, 872923, 13669, 3779, 36767, 884311, 110777, 296041, 68611, 9311, 895771, 2969, 112691, 903451, 9431, 5779, 56827, 27611, 2939, 83537, 4591, 14449, 38693, 930583, 10597, 3943, 13217, 118037, 315421, 118529, 4261, 29879, 120011, 7951, 40169, 74311, 323341, 3697, 978007, 122501, 327337, 5591, 986023, 990043, 9539, 2927, 5209, 1002151, 62761, 30491, 1010263, 42179, 1014331, 26113, 1022491, 42689, 1026583, 11689, 343561, 1034791, 21601, 6221, 130121, 31607, 21859, 3083, 1153, 1063771, 2803, 66877, 82471, 5101, 360169, 1084711, 11321, 98993, 136379, 99761, 138497, 1110103, 8017, 2251, 372877, 46877, 2797, 10859, 2753, 17713, 1140091, 34679, 1148731, 23977, 1153063, 2777, 13177, 13997, 48497, 1166107, 3319, 390157, 73291, 6791, 49043, 1179223, 2503, 5701, 1188007, 6199, 108401, 4817, 398941, 2237, 17929, 6247, 6863, 403369, 11657, 93427, 1219003, 407821, 38303, 8963, 51257, 5807, 38723, 8681, 1245883, 416797, 5051, 1254907, 2381, 9857, 13591, 14389, 16057, 4073, 97927, 19927, 425869, 4111, 2731,

7. Distribution of the primes

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

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)
11011471.1000000.4000001.1000000.0000000.0000000.000000
21008220620.8200000.2000000.8200007.4545455.0000008.857142
31.0006791235560.6790000.1230000.6790008.2804886.1500008.967742
410.0006.6458815.7640.6645000.0881000.6645009.7864507.16260110.366906
5100.00066.8576.95359.9040.6685700.0695300.66857010.0612497.89216810.392783
61.000.000673.21257.125616.0870.6732120.0571250.67321210.0694318.21587810.284572
710.000.0006.764.390481.9466.282.4440.6764390.0481950.67643910.0479358.43669110.197332
8100.000.00067.848.1484.175.10463.673.0440.6784810.0417510.67848110.0301948.66301310.135076
91.000.000.000680.108.83636.845.613643.263.2230.6801090.0368460.68010910.0239868.82507610.102599
1010.000.000.0006.813.998.373329.753.9006.484.244.4730.6814000.0329750.68140010.0189828.94961110.080235


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
389361.1250000.3750000.7500001.8000001.5000002.000000
416166101.0000000.3750000.6250001.7777782.0000001.666667
532289190.8750000.2812500.5937501.7500001.5000001.900000
6645314390.8281250.2187500.6093751.8928571.5555562.052632
71289824740.7656250.1875000.5781251.8490571.7142861.897436
8256193411520.7539060.1601560.5937501.9693881.7083332.054054
9512354662880.6914060.1289060.5625001.8341971.6097561.894737
101.0246961255710.6796880.1220700.5576171.9661021.8939391.982639
112.0481.3532321.1210.6606450.1132810.5473631.9439661.8560001.963222
124.0962.7084052.3030.6611330.0988770.5622562.0014781.7456902.054416
138.1925.4307364.6940.6628420.0898440.5729982.0051701.8172842.038211
1416.38410.8931.3619.5320.6648560.0830690.5817872.0060771.8491852.030678
1532.76821.7802.52119.2590.6646730.0769350.5877381.9994491.8523142.020458
1665.53643.6904.73938.9510.6666560.0723110.5943452.0059691.8798102.022483
17131.07287.6488.90178.7470.6687010.0679090.6007922.0061341.8782442.021694
18262.144175.80216.736159.0660.6706310.0638430.6067892.0057731.8802382.019963
19524.288352.56631.504321.0620.6724660.0600890.6123772.0054721.8824092.018420
201.048.576706.02759.697646.3300.6733200.0569310.6163882.0025381.8949022.013100
212.097.1521.414.527113.0771.301.4500.6744990.0539190.6205802.0035031.8941822.013600
224.194.3042.833.037214.4542.618.5830.6754490.0511300.6243192.0028161.8965312.012050
238.388.6085.672.951409.1415.263.8100.6762680.0487730.6274952.0024271.9078262.010175
2416.777.21611.357.505781.77110.575.7340.6769600.0465970.6303632.0020451.9107622.009140
2533.554.43222.735.7401.496.57221.239.1680.6775780.0446010.6329772.0018251.9143352.008293
2667.108.86445.509.8542.868.92742.640.9270.6781500.0427500.6353992.0016881.9169992.007655
27134.217.72891.095.2375.510.50785.584.7300.6787120.0410560.6376562.0016601.9207552.007103
28268.435.456182.330.24610.603.229171.727.0170.6792330.0395000.6397332.0015341.9241842.006515
29536.870.912364.917.28820.430.008344.487.2800.6797110.0380540.6416582.0014081.9267722.006017
301.073.741.824730.310.70439.418.987690.891.7170.6801550.0367120.6434432.0013051.9294652.005565
312.147.483.6481.461.504.34576.157.1971.385.347.1480.6805660.0354630.6451032.0012091.9319932.005158
324.294.967.2962.924.680.795147.301.6262.777.379.1690.6809550.0342960.6466592.0011441.9341792.004825
338.589.934.5925.852.507.327285.232.2605.567.275.0670.6813220.0332050.6481162.0010761.9363822.004507
3417.179.869.18411.710.955.722552.846.87111.158.108.8510.6816670.0321800.6494872.0010151.9382342.004232


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
242011100
383111200
4166411302
5329711503
664141211904
712824221112011
825641391118022
951266641133032
101.0241251231162062
112.048232230111190112
124.096405403112030201
138.192736734113650370
1416.3841.3611.359116900670
1532.7682.5212.519111.27301.247
1665.5364.7394.737112.37702.361
17131.0728.9018.899114.43404.466
18262.14416.73616.734118.40408.331
19524.28831.50431.5021115.810015.693
201.048.57659.69759.6951129.958029.738
212.097.152113.077113.0751156.586056.490
224.194.304214.454214.45211107.3500107.103
238.388.608409.141409.13911204.4680204.672
2416.777.216781.771781.76911390.9410390.829
2533.554.4321.496.5721.496.57011749.0990747.472
2667.108.8642.868.9272.868.925111.435.63001.433.296
27134.217.7285.510.5075.510.505112.756.12002.754.386
28268.435.45610.603.22910.603.227115.301.68605.301.542
29536.870.91220.430.00820.430.0061110.213.963010.216.044
301.073.741.82439.418.98739.418.9851119.708.249019.710.737
312.147.483.64876.157.19776.157.1951138.075.734038.081.462
324.294.967.296147.301.626147.301.6241173.646.926073.654.699
338.589.934.592285.232.260285.232.25811142.619.3170142.612.942
3417.179.869.184552.846.871552.846.86911276.424.3920276.422.478


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
121100010
243120120
386240222
41610371432
532198112773
664392019813108
712874353918212114
8256152728040373936
951228814414482609056
101.024571281290157119167128
112.0481.121543578326231309255
124.0962.3031.1361.167669484644506
138.1924.6942.3332.3611.3331.0601.2701.031
1416.3849.5324.7504.7822.6662.1422.6172.107
1532.76819.2599.5379.7225.2334.3845.2534.389
1665.53638.95119.36519.58610.4448.98910.5448.974
17131.07278.74739.09839.64920.96418.19721.29418.292
18262.144159.06679.15879.90842.44237.01342.53837.073
19524.288321.062159.823161.23985.45975.04385.40775.153
201.048.576646.330322.019324.311171.166151.625171.235152.304
212.097.1521.301.450648.455652.995343.935306.568343.809307.138
224.194.3042.618.5831.305.5871.312.996689.553619.635689.469619.926
238.388.6085.263.8102.625.2362.638.5741.382.4051.249.8711.382.6891.248.845
2416.777.21610.575.7345.276.0065.299.7282.770.2282.518.2152.771.0132.516.278
2533.554.43221.239.16810.599.66510.639.5035.552.8165.067.4875.553.0025.065.863
2667.108.86442.640.92721.284.56621.356.36111.120.31910.199.75711.126.36510.194.486
27134.217.72885.584.73042.722.66242.862.06822.285.54320.503.60822.287.87320.507.706
28268.435.456171.727.01785.731.58485.995.43344.638.84241.214.79644.645.19441.228.185
29536.870.912344.487.280171.997.788172.489.49289.412.17782.819.46889.418.69882.836.937
301.073.741.824690.891.717344.982.059345.909.658179.062.011166.378.010179.054.509166.397.187
312.147.483.6481.385.347.148691.817.662693.529.486358.557.766334.109.392358.566.474334.113.516
324.294.967.2962.777.379.1691.387.081.3141.390.297.855717.978.768670.721.047717.943.034670.736.320
338.589.934.5925.567.275.0672.780.619.3412.786.655.7261.437.553.3301.346.154.2851.437.449.2701.346.118.182
3417.179.869.18411.158.108.8515.573.295.6775.584.813.1742.878.022.6112.701.104.6312.877.916.0302.701.065.579


8. Check for existing Integer Sequences by OEIS

Found in Database : 89, 13, 3, 101, 11, 59, 1723, 127, 71, 83, 2971, 137, 3607, 491, 109, 1, 4903, 1, 5563, 67,
Found in Database : 89, 13, 3, 101, 11, 59, 1723, 127, 71, 83, 2971, 137, 3607, 491, 109, 4903, 5563, 67, 31, 821, 6907, 151, 7591, 251, 691, 389, 881, 157, 3469, 673, 11131, 479, 11863, 139, 4201, 811,
Found in Database : 3, 11, 13, 31, 59, 67, 71, 79, 83, 89, 101, 109, 127, 137, 139,