Inhaltsverzeichnis

Development of
Algorithmic Constructions

21:02:02
Deutsch
18.Apr 2024

Polynom = x^2+92x-113

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) = 113 = 113
f(1) = 5 = 5
f(2) = 75 = 3*5*5
f(3) = 43 = 43
f(4) = 271 = 271
f(5) = 93 = 3*31
f(6) = 475 = 5*5*19
f(7) = 145 = 5*29
f(8) = 687 = 3*229
f(9) = 199 = 199
f(10) = 907 = 907
f(11) = 255 = 3*5*17
f(12) = 1135 = 5*227
f(13) = 313 = 313
f(14) = 1371 = 3*457
f(15) = 373 = 373
f(16) = 1615 = 5*17*19
f(17) = 435 = 3*5*29
f(18) = 1867 = 1867
f(19) = 499 = 499
f(20) = 2127 = 3*709
f(21) = 565 = 5*113
f(22) = 2395 = 5*479
f(23) = 633 = 3*211
f(24) = 2671 = 2671
f(25) = 703 = 19*37
f(26) = 2955 = 3*5*197
f(27) = 775 = 5*5*31
f(28) = 3247 = 17*191
f(29) = 849 = 3*283
f(30) = 3547 = 3547
f(31) = 925 = 5*5*37
f(32) = 3855 = 3*5*257
f(33) = 1003 = 17*59
f(34) = 4171 = 43*97
f(35) = 1083 = 3*19*19
f(36) = 4495 = 5*29*31
f(37) = 1165 = 5*233
f(38) = 4827 = 3*1609
f(39) = 1249 = 1249
f(40) = 5167 = 5167
f(41) = 1335 = 3*5*89
f(42) = 5515 = 5*1103
f(43) = 1423 = 1423
f(44) = 5871 = 3*19*103
f(45) = 1513 = 17*89
f(46) = 6235 = 5*29*43
f(47) = 1605 = 3*5*107
f(48) = 6607 = 6607
f(49) = 1699 = 1699
f(50) = 6987 = 3*17*137
f(51) = 1795 = 5*359
f(52) = 7375 = 5*5*5*59
f(53) = 1893 = 3*631
f(54) = 7771 = 19*409
f(55) = 1993 = 1993
f(56) = 8175 = 3*5*5*109
f(57) = 2095 = 5*419
f(58) = 8587 = 31*277
f(59) = 2199 = 3*733
f(60) = 9007 = 9007
f(61) = 2305 = 5*461
f(62) = 9435 = 3*5*17*37
f(63) = 2413 = 19*127
f(64) = 9871 = 9871
f(65) = 2523 = 3*29*29
f(66) = 10315 = 5*2063
f(67) = 2635 = 5*17*31
f(68) = 10767 = 3*37*97
f(69) = 2749 = 2749
f(70) = 11227 = 103*109
f(71) = 2865 = 3*5*191
f(72) = 11695 = 5*2339
f(73) = 2983 = 19*157
f(74) = 12171 = 3*4057
f(75) = 3103 = 29*107
f(76) = 12655 = 5*2531
f(77) = 3225 = 3*5*5*43
f(78) = 13147 = 13147
f(79) = 3349 = 17*197
f(80) = 13647 = 3*4549
f(81) = 3475 = 5*5*139
f(82) = 14155 = 5*19*149
f(83) = 3603 = 3*1201
f(84) = 14671 = 17*863
f(85) = 3733 = 3733
f(86) = 15195 = 3*5*1013
f(87) = 3865 = 5*773
f(88) = 15727 = 15727
f(89) = 3999 = 3*31*43
f(90) = 16267 = 16267
f(91) = 4135 = 5*827
f(92) = 16815 = 3*5*19*59
f(93) = 4273 = 4273
f(94) = 17371 = 29*599
f(95) = 4413 = 3*1471
f(96) = 17935 = 5*17*211
f(97) = 4555 = 5*911
f(98) = 18507 = 3*31*199
f(99) = 4699 = 37*127
f(100) = 19087 = 19087

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+92x-113

f(0)=113
f(1)=5
f(2)=3
f(3)=43
f(4)=271
f(5)=31
f(6)=19
f(7)=29
f(8)=229
f(9)=199
f(10)=907
f(11)=17
f(12)=227
f(13)=313
f(14)=457
f(15)=373
f(16)=1
f(17)=1
f(18)=1867
f(19)=499
f(20)=709
f(21)=1
f(22)=479
f(23)=211
f(24)=2671
f(25)=37
f(26)=197
f(27)=1
f(28)=191
f(29)=283
f(30)=3547
f(31)=1
f(32)=257
f(33)=59
f(34)=97
f(35)=1
f(36)=1
f(37)=233
f(38)=1609
f(39)=1249
f(40)=5167
f(41)=89
f(42)=1103
f(43)=1423
f(44)=103
f(45)=1
f(46)=1
f(47)=107
f(48)=6607
f(49)=1699
f(50)=137
f(51)=359
f(52)=1
f(53)=631
f(54)=409
f(55)=1993
f(56)=109
f(57)=419
f(58)=277
f(59)=733
f(60)=9007
f(61)=461
f(62)=1
f(63)=127
f(64)=9871
f(65)=1
f(66)=2063
f(67)=1
f(68)=1
f(69)=2749
f(70)=1
f(71)=1
f(72)=2339
f(73)=157
f(74)=4057
f(75)=1
f(76)=2531
f(77)=1
f(78)=13147
f(79)=1
f(80)=4549
f(81)=139
f(82)=149
f(83)=1201
f(84)=863
f(85)=3733
f(86)=1013
f(87)=773
f(88)=15727
f(89)=1
f(90)=16267
f(91)=827
f(92)=1
f(93)=4273
f(94)=599
f(95)=1471
f(96)=1
f(97)=911
f(98)=1
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+92x-113 could be written as f(y)= y^2-2229 with x=y-46

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+46
f'(x)>2x+91

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

113, 5, 3, 43, 271, 31, 19, 29, 229, 199, 907, 17, 227, 313, 457, 373, 1, 1, 1867, 499, 709, 1, 479, 211, 2671, 37, 197, 1, 191, 283, 3547, 1, 257, 59, 97, 1, 1, 233, 1609, 1249, 5167, 89, 1103, 1423, 103, 1, 1, 107, 6607, 1699, 137, 359, 1, 631, 409, 1993, 109, 419, 277, 733, 9007, 461, 1, 127, 9871, 1, 2063, 1, 1, 2749, 1, 1, 2339, 157, 4057, 1, 2531, 1, 13147, 1, 4549, 139, 149, 1201, 863, 3733, 1013, 773, 15727, 1, 16267, 827, 1, 4273, 599, 1471, 1, 911, 1, 1, 19087, 1, 787, 4993, 1, 1, 167, 353, 21487, 5449, 7369, 1, 4547, 1, 23371, 5923, 1601, 1217, 1451, 2083, 1, 1283, 1733, 1, 179, 2251, 5471, 1, 9349, 1, 1, 1, 1, 1, 1, 449, 1, 521, 31627, 421, 10789, 1637, 1, 2791, 33871, 8563, 2309, 1, 35407, 1, 36187, 1, 1, 9343, 1, 3181, 1543, 1949, 691, 9949, 1297, 677, 1, 241, 821, 1, 8543, 719, 2293, 647, 251, 2243, 9059, 1, 46171, 1, 3137, 1, 47947, 1, 48847, 1, 1, 12553, 50671, 4261, 607, 1, 17509, 13249, 1, 1, 10883, 13723, 18457, 13963, 593, 947, 3371, 14449, 19429, 2939, 2371, 293, 60271, 15193, 1, 3089, 1, 5233, 1, 3191, 4289, 523, 65371, 1, 1, 3347, 1, 1, 1, 1151, 1, 1, 23557, 937, 1, 1, 751, 311, 1, 1, 883, 6301, 1, 19183, 5153, 1, 78427, 1, 317, 4007, 5381, 20323, 1, 6871, 16607, 1, 28069, 1, 829, 1433, 3463, 1, 1721, 22093, 3559, 1493, 90187, 22699, 30469, 1, 1, 1, 93871, 23623, 1, 4787, 3323, 1, 1, 1, 347, 1, 919, 1, 1, 1021, 1181, 25849, 104047, 349, 1109, 1559, 1, 26833, 21599, 1811, 1, 1, 997, 1, 1, 9391, 113371, 28513, 7649, 1, 116107, 9733, 6911, 1, 1, 1, 2797, 1, 1, 1, 1, 30949, 6553, 2087, 1, 31663, 42457, 1033, 25763, 1, 130267, 32749, 2311, 1, 1567, 11161, 983, 1, 1, 1, 2333, 1, 401, 1399, 9377, 35353, 8363, 1, 991, 1, 48409, 1, 146767, 2459, 29663, 37273, 49957, 37663, 977, 1, 8053, 38449, 1, 1, 6247, 1, 157771, 1367, 1, 8009, 1, 1, 1439, 8171, 10949, 41263, 4483, 1, 33503, 443, 1, 42499, 170827, 2861, 34499, 2549, 58057, 43753, 35171, 1, 4129, 433, 1, 1801, 36191, 1, 6299, 2699, 1, 1, 1, 15583, 1, 9437, 12641, 47623, 6599, 1, 1, 1, 64969, 1579, 196687, 1, 467, 49843, 1, 2647, 1, 1, 6577, 51199, 1, 10331, 41507, 1, 209371, 2767, 14081, 10607, 213067, 1049, 1091, 1, 1, 1877, 1, 18301, 44111, 1, 74149, 55849, 7237, 1, 1223, 1321, 4003, 57283, 2707, 3851, 6271, 1879, 1, 1, 1627, 1039, 1873, 1, 1, 12041, 241807, 20233, 243787, 12239, 1, 1, 247771, 20731, 1, 12539, 4937, 63199, 1, 1, 2693, 1, 1999, 1097, 1, 4349, 1087, 1777, 1, 1, 2801, 1, 268171, 1, 1, 2713, 272347, 22783, 2161, 1, 1, 69403, 278671, 23311, 1, 1, 94309, 70999, 3203, 1, 1, 72073, 96457, 72613, 1, 4877, 2113, 73699, 1, 1, 11923, 1, 1, 1277, 1, 1, 304687, 1499, 557, 15401, 1, 77563, 311371, 26041, 62723, 15737, 1, 1, 318127, 1, 1, 2593, 1823, 80953, 3823, 1, 327247, 1, 109849, 3307, 2141, 27751, 334171, 83833, 22433, 16883, 1, 1, 1, 17117, 22901, 1, 2203, 28921, 1, 17471, 6151, 2377, 8209, 5903, 2843, 1, 3847, 5279, 14407, 1, 12503, 1, 1, 18311, 1709, 1, 6269, 1, 24821, 1, 12923, 31333, 1619, 1, 1489, 95233, 382171, 1, 4049, 1, 129049, 1, 10531, 1303, 1, 1667, 1, 1, 1, 1, 399727, 5897, 134089, 20177, 80963, 1, 1, 1, 27329, 1, 3011, 34483, 415087, 1, 5569, 104743, 420271, 1, 1, 1, 141829, 106699, 4001, 1, 1, 108013, 7603, 1, 1, 1, 438667, 1, 1, 22133, 88799, 1, 23509, 3613, 1, 4507, 26591, 37783, 1, 4561, 30497, 6037, 460171, 38461, 2153, 1, 155209, 1, 27551, 7829, 1597, 6217, 1, 1, 95327, 1, 11149, 120199, 1657, 24179, 1, 40531, 13183, 4217, 1, 1447, 1, 41233, 13411, 1, 1, 125113, 5639, 41941, 100943, 25307, 1901, 127249, 2591, 1, 1, 128683, 1, 129403, 103811, 1, 1, 1, 1, 1, 1789, 44101, 1, 133033, 35573, 1, 5209, 1, 28393, 1, 36161, 1, 545371, 1, 6451, 743, 1, 1, 29173, 1, 22291, 4817, 186757, 140443, 22531, 9413, 33311, 1, 1741, 28541, 114467, 1, 575371, 144223, 38561, 1, 18757, 2557, 3923, 29303, 1, 147283, 5419, 2903, 118751, 5953, 1, 1, 35291, 1, 4159, 151153, 1, 1, 1, 10181, 32233, 153499, 6619, 1, 1, 51691, 621871, 155863, 41669, 1, 628207, 1693, 631387, 31649, 8461, 1787, 637771, 53281, 25639, 1, 214729, 9497, 10973, 1, 130127, 163063, 12821, 1, 6917, 10979, 660367, 1, 221209, 1, 133379, 55711, 4013, 167953, 1, 1, 676747, 56533, 21937, 1, 45557, 171253, 686671, 3019, 137999, 34583, 231109, 1, 24023, 1, 1, 1, 234457, 9277, 1, 11807, 41771, 177949, 1, 35759, 1, 1, 1, 1, 9649, 36269, 1, 60733, 1, 1, 1, 1, 1, 3623, 1, 1, 248089, 1, 17389, 12491, 150239, 9907, 2351, 1, 151631, 1, 1759, 6581, 255049, 7669, 9043, 1, 2467, 1, 51713, 38873, 1, 1, 4373, 39227, 1, 197023, 1, 1783, 1, 39761, 9161, 1, 800587, 1, 1, 201493, 269257, 202393, 6491, 13553, 1, 3461, 1, 1, 164447, 1, 26641, 206923, 3253, 1, 8089, 1, 1889, 2207, 1, 6793, 2663, 70501, 4583, 1, 1, 213349, 45013, 2857, 4643, 12659, 287557, 216133, 1, 1, 870127, 1, 15331, 43787, 175523, 73291, 1, 1, 59009, 44351, 1, 3907, 52511, 44729, 11953, 2099, 1, 75181, 1, 1, 302629, 11971, 911707, 15227, 10771, 6199, 306457, 1, 6367, 1, 1, 6277, 1, 46643, 186959, 1, 4099, 2081, 2027, 1, 1, 4649, 950347, 1, 63617, 239053, 1, 1, 1, 1, 322009, 1, 4597, 1, 1, 243973, 325957, 8447, 11551, 1, 985807, 5743, 1, 2917, 1, 82981, 7283, 249943, 1, 1, 3631, 83983, 1009807, 50591, 67589, 14939, 35099, 84991, 1, 51197, 20117, 1, 1030027, 1, 206819, 259033, 11933, 13687, 1, 1, 1046347, 1, 1, 1, 210911, 1, 1058671, 1, 70853, 1, 1, 89083, 1071067, 53657, 1, 1, 56809, 90121, 3673, 1, 362569, 272449,

6. Sequence of the polynom (only primes)

113, 5, 3, 43, 271, 31, 19, 29, 229, 199, 907, 17, 227, 313, 457, 373, 1867, 499, 709, 479, 211, 2671, 37, 197, 191, 283, 3547, 257, 59, 97, 233, 1609, 1249, 5167, 89, 1103, 1423, 103, 107, 6607, 1699, 137, 359, 631, 409, 1993, 109, 419, 277, 733, 9007, 461, 127, 9871, 2063, 2749, 2339, 157, 4057, 2531, 13147, 4549, 139, 149, 1201, 863, 3733, 1013, 773, 15727, 16267, 827, 4273, 599, 1471, 911, 19087, 787, 4993, 167, 353, 21487, 5449, 7369, 4547, 23371, 5923, 1601, 1217, 1451, 2083, 1283, 1733, 179, 2251, 5471, 9349, 449, 521, 31627, 421, 10789, 1637, 2791, 33871, 8563, 2309, 35407, 36187, 9343, 3181, 1543, 1949, 691, 9949, 1297, 677, 241, 821, 8543, 719, 2293, 647, 251, 2243, 9059, 46171, 3137, 47947, 48847, 12553, 50671, 4261, 607, 17509, 13249, 10883, 13723, 18457, 13963, 593, 947, 3371, 14449, 19429, 2939, 2371, 293, 60271, 15193, 3089, 5233, 3191, 4289, 523, 65371, 3347, 1151, 23557, 937, 751, 311, 883, 6301, 19183, 5153, 78427, 317, 4007, 5381, 20323, 6871, 16607, 28069, 829, 1433, 3463, 1721, 22093, 3559, 1493, 90187, 22699, 30469, 93871, 23623, 4787, 3323, 347, 919, 1021, 1181, 25849, 104047, 349, 1109, 1559, 26833, 21599, 1811, 997, 9391, 113371, 28513, 7649, 116107, 9733, 6911, 2797, 30949, 6553, 2087, 31663, 42457, 1033, 25763, 130267, 32749, 2311, 1567, 11161, 983, 2333, 401, 1399, 9377, 35353, 8363, 991, 48409, 146767, 2459, 29663, 37273, 49957, 37663, 977, 8053, 38449, 6247, 157771, 1367, 8009, 1439, 8171, 10949, 41263, 4483, 33503, 443, 42499, 170827, 2861, 34499, 2549, 58057, 43753, 35171, 4129, 433, 1801, 36191, 6299, 2699, 15583, 9437, 12641, 47623, 6599, 64969, 1579, 196687, 467, 49843, 2647, 6577, 51199, 10331, 41507, 209371, 2767, 14081, 10607, 213067, 1049, 1091, 1877, 18301, 44111, 74149, 55849, 7237, 1223, 1321, 4003, 57283, 2707, 3851, 6271, 1879, 1627, 1039, 1873, 12041, 241807, 20233, 243787, 12239, 247771, 20731, 12539, 4937, 63199, 2693, 1999, 1097, 4349, 1087, 1777, 2801, 268171, 2713, 272347, 22783, 2161, 69403, 278671, 23311, 94309, 70999, 3203, 72073, 96457, 72613, 4877, 2113, 73699, 11923, 1277, 304687, 1499, 557, 15401, 77563, 311371, 26041, 62723, 15737, 318127, 2593, 1823, 80953, 3823, 327247, 109849, 3307, 2141, 27751, 334171, 83833, 22433, 16883, 17117, 22901, 2203, 28921, 17471, 6151, 2377, 8209, 5903, 2843, 3847, 5279, 14407, 12503, 18311, 1709, 6269, 24821, 12923, 31333, 1619, 1489, 95233, 382171, 4049, 129049, 10531, 1303, 1667, 399727, 5897, 134089, 20177, 80963, 27329, 3011, 34483, 415087, 5569, 104743, 420271, 141829, 106699, 4001, 108013, 7603, 438667, 22133, 88799, 23509, 3613, 4507, 26591, 37783, 4561, 30497, 6037, 460171, 38461, 2153, 155209, 27551, 7829, 1597, 6217, 95327, 11149, 120199, 1657, 24179, 40531, 13183, 4217, 1447, 41233, 13411, 125113, 5639, 41941, 100943, 25307, 1901, 127249, 2591, 128683, 129403, 103811, 1789, 44101, 133033, 35573, 5209, 28393, 36161, 545371, 6451, 743, 29173, 22291, 4817, 186757, 140443, 22531, 9413, 33311, 1741, 28541, 114467, 575371, 144223, 38561, 18757, 2557, 3923, 29303, 147283, 5419, 2903, 118751, 5953, 35291, 4159, 151153, 10181, 32233, 153499, 6619, 51691, 621871, 155863, 41669, 628207, 1693, 631387, 31649, 8461, 1787, 637771, 53281, 25639, 214729, 9497, 10973, 130127, 163063, 12821, 6917, 10979, 660367, 221209, 133379, 55711, 4013, 167953, 676747, 56533, 21937, 45557, 171253, 686671, 3019, 137999, 34583, 231109, 24023, 234457, 9277, 11807, 41771, 177949, 35759, 9649, 36269, 60733, 3623, 248089, 17389, 12491, 150239, 9907, 2351, 151631, 1759, 6581, 255049, 7669, 9043, 2467, 51713, 38873, 4373, 39227, 197023, 1783, 39761, 9161, 800587, 201493, 269257, 202393, 6491, 13553, 3461, 164447, 26641, 206923, 3253, 8089, 1889, 2207, 6793, 2663, 70501, 4583, 213349, 45013, 2857, 4643, 12659, 287557, 216133, 870127, 15331, 43787, 175523, 73291, 59009, 44351, 3907, 52511, 44729, 11953, 2099, 75181, 302629, 11971, 911707, 15227, 10771, 6199, 306457, 6367, 6277, 46643, 186959, 4099, 2081, 2027, 4649, 950347, 63617, 239053, 322009, 4597, 243973, 325957, 8447, 11551, 985807, 5743, 2917, 82981, 7283, 249943, 3631, 83983, 1009807, 50591, 67589, 14939, 35099, 84991, 51197, 20117, 1030027, 206819, 259033, 11933, 13687, 1046347, 210911, 1058671, 70853, 89083, 1071067, 53657, 56809, 90121, 3673, 362569, 272449,

7. Distribution of the primes

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

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
21007115560.7100000.1500000.7100006.4545453.7500008.000000
31.000634775570.6340000.0770000.6340008.9295785.1333339.946428
410.0006.5145505.9640.6514000.0550000.65140010.2744487.14285710.707361
5100.00066.2514.26861.9830.6625100.0426800.66251010.1705567.76000010.392858
61.000.000667.95234.900633.0520.6679520.0349000.66795210.0821428.17713310.213317
710.000.0006.713.297296.4516.416.8460.6713300.0296450.67133010.0505688.49429810.136365
8100.000.00067.402.7232.571.93864.830.7850.6740270.0257190.67402710.0401818.67576110.103216
91.000.000.000676.129.89222.704.676653.425.2160.6761300.0227050.67613010.0311978.82784710.078935
1010.000.000.0006.778.238.436203.161.7226.575.076.7140.6778240.0203160.67782410.0250538.94801210.062478


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
245321.2500000.7500000.5000001.6666671.5000002.000000
389361.1250000.3750000.7500001.8000001.0000003.000000
416154110.9375000.2500000.6875001.6666671.3333331.833333
532267190.8125000.2187500.5937501.7333331.7500001.727273
6645011390.7812500.1718750.6093751.9230771.5714292.052632
71288917720.6953120.1328120.5625001.7800001.5454551.846154
8256167281390.6523440.1093750.5429691.8764051.6470591.930556
9512323472760.6308590.0917970.5390621.9341321.6785711.985612
101.024648775710.6328120.0751950.5576172.0061921.6382982.068841
112.0481.3261391.1870.6474610.0678710.5795902.0462961.8051952.078809
124.0962.6472662.3810.6462400.0649410.5812991.9962291.9136692.005897
138.1925.3294684.8610.6505130.0571290.5933842.0132221.7593982.041579
1416.38410.7088439.8650.6535640.0514530.6021122.0093831.8012822.029418
1532.76821.5761.55020.0260.6584470.0473020.6111452.0149421.8386712.030005
1665.53643.3062.92440.3820.6607970.0446170.6161802.0071381.8864522.016479
17131.07286.9885.46281.5260.6636660.0416720.6219942.0086821.8679892.018870
18262.144174.43410.274164.1600.6654130.0391920.6262212.0052651.8809962.013591
19524.288349.51819.335330.1830.6666530.0368790.6297742.0037261.8819352.011349
201.048.576700.37436.537663.8370.6679290.0348440.6330842.0038281.8896822.010512
212.097.1521.403.23869.4731.333.7650.6691160.0331270.6359892.0035551.9014422.009176
224.194.3042.811.045131.7932.679.2520.6702050.0314220.6387832.0032561.8970392.008789
238.388.6085.629.520251.7635.377.7570.6710910.0300120.6410792.0026431.9102912.007186
2416.777.21611.273.947480.85210.793.0950.6719800.0286610.6433192.0026481.9099392.006988
2533.554.43222.575.865921.49921.654.3660.6728130.0274630.6453502.0024811.9163882.006317
2667.108.86445.205.0701.767.09543.437.9750.6736080.0263320.6472762.0023631.9176312.005969
27134.217.72890.505.6623.395.38487.110.2780.6743200.0252980.6490222.0021131.9214502.005394
28268.435.456181.192.1536.532.139174.660.0140.6749930.0243340.6506592.0019981.9238292.005045
29536.870.912362.712.00312.589.049350.122.9540.6756040.0234490.6521552.0018081.9272482.004597
301.073.741.824726.053.25324.289.554701.763.6990.6761900.0226210.6535682.0017351.9294192.004335
312.147.483.6481.453.276.49846.923.3071.406.353.1910.6767350.0218500.6548842.0016111.9318312.004027
324.294.967.2962.908.751.83390.753.8282.817.998.0050.6772470.0211300.6561162.0015131.9340882.003763
338.589.934.5925.821.598.264175.735.6035.645.862.6610.6777230.0204580.6572652.0014081.9363992.003501
3417.179.869.18411.650.895.207340.616.28111.310.278.9260.6781710.0198260.6583452.0013231.9382322.003286


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
243111101
383111101
4164211201
5327511402
66411911406
7128171511709
825628261113014
951247451125021
101.02477751141035
112.0481391371173065
124.096266264111350130
138.192468466112310236
1416.384843841114240418
1532.7681.5501.548117750774
1665.5362.9242.922111.45701.466
17131.0725.4625.460112.71702.744
18262.14410.27410.272115.12005.153
19524.28819.33519.333119.61609.718
201.048.57636.53736.5351118.246018.290
212.097.15269.47369.4711134.618034.854
224.194.304131.793131.7911165.928065.864
238.388.608251.763251.76111125.9760125.786
2416.777.216480.852480.85011240.3040240.547
2533.554.432921.499921.49711460.6640460.834
2667.108.8641.767.0951.767.09311883.2200883.874
27134.217.7283.395.3843.395.382111.697.27701.698.106
28268.435.4566.532.1396.532.137113.265.89003.266.248
29536.870.91212.589.04912.589.047116.294.56106.294.487
301.073.741.82424.289.55424.289.5521112.143.578012.145.975
312.147.483.64846.923.30746.923.3051123.463.705023.459.601
324.294.967.29690.753.82890.753.8261145.381.336045.372.491
338.589.934.592175.735.603175.735.6011187.870.024087.865.578
3417.179.869.184340.616.281340.616.27911170.320.7720170.295.508


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
121010010
242110110
386420231
41611832342
532191273664
664392415119910
712872403220191716
8256139786137343632
951227615711976656372
101.024571317254157137136141
112.0481.187652535305283298301
124.0962.3811.3031.078593598600590
138.1924.8612.6022.2591.2011.2121.2381.210
1416.3849.8655.2274.6382.4402.4162.5682.441
1532.76820.02610.5299.4975.0344.9145.1164.962
1665.53640.38221.12919.25310.1609.96510.2749.983
17131.07281.52642.64738.87920.60120.21320.51420.198
18262.144164.16085.40278.75841.38940.55941.48540.727
19524.288330.183171.332158.85183.27581.66283.44181.805
201.048.576663.837343.611320.226166.881164.468167.825164.663
212.097.1521.333.765689.315644.450336.051330.314336.427330.973
224.194.3042.679.2521.381.9851.297.267674.432665.504675.260664.056
238.388.6085.377.7572.769.2492.608.5081.353.4101.335.9011.355.1221.333.324
2416.777.21610.793.0955.552.2385.240.8572.716.7732.679.6412.719.2212.677.460
2533.554.43221.654.36611.127.13310.527.2335.448.7445.378.7825.452.0595.374.781
2667.108.86443.437.97522.296.97321.141.00210.931.43810.786.29410.933.04010.787.203
27134.217.72887.110.27844.666.58842.443.69021.916.65221.638.36821.915.62521.639.633
28268.435.456174.660.01489.469.52085.190.49443.930.29543.402.56243.924.71543.402.442
29536.870.912350.122.954179.196.653170.926.30188.037.74687.040.93488.026.12787.018.147
301.073.741.824701.763.699358.861.166342.902.533176.411.272174.486.082176.399.128174.467.217
312.147.483.6481.406.353.191718.606.032687.747.159353.459.177349.735.776353.440.158349.718.080
324.294.967.2962.817.998.0051.438.855.1251.379.142.880708.085.757700.920.444708.100.068700.891.736
338.589.934.5925.645.862.6612.880.748.6092.765.114.0521.418.408.0991.404.506.6791.418.429.8551.404.518.028
3417.179.869.18411.310.278.9265.767.288.7695.542.990.1572.840.986.0392.814.104.2942.841.085.5722.814.103.021


8. Check for existing Integer Sequences by OEIS

Found in Database : 113, 5, 3, 43, 271, 31, 19, 29, 229, 199, 907, 17, 227, 313, 457, 373, 1, 1, 1867, 499,
Found in Database : 113, 5, 3, 43, 271, 31, 19, 29, 229, 199, 907, 17, 227, 313, 457, 373, 1867, 499, 709, 479, 211, 2671, 37, 197, 191, 283, 3547, 257, 59, 97, 233, 1609, 1249,
Found in Database : 3, 5, 17, 19, 29, 31, 37, 43, 59, 89, 97, 103, 107, 109, 113, 127, 137, 139, 149,