Inhaltsverzeichnis

Development of
Algorithmic Constructions

18:00:23
Deutsch
19.Apr 2024

Polynom = x^2+84x-109

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) = 109 = 109
f(1) = 3 = 3
f(2) = 63 = 3*3*7
f(3) = 19 = 19
f(4) = 243 = 3*3*3*3*3
f(5) = 21 = 3*7
f(6) = 431 = 431
f(7) = 33 = 3*11
f(8) = 627 = 3*11*19
f(9) = 91 = 7*13
f(10) = 831 = 3*277
f(11) = 117 = 3*3*13
f(12) = 1043 = 7*149
f(13) = 9 = 3*3
f(14) = 1263 = 3*421
f(15) = 43 = 43
f(16) = 1491 = 3*7*71
f(17) = 201 = 3*67
f(18) = 1727 = 11*157
f(19) = 231 = 3*7*11
f(20) = 1971 = 3*3*3*73
f(21) = 131 = 131
f(22) = 2223 = 3*3*13*19
f(23) = 147 = 3*7*7
f(24) = 2483 = 13*191
f(25) = 327 = 3*109
f(26) = 2751 = 3*7*131
f(27) = 361 = 19*19
f(28) = 3027 = 3*1009
f(29) = 99 = 3*3*11
f(30) = 3311 = 7*11*43
f(31) = 27 = 3*3*3
f(32) = 3603 = 3*1201
f(33) = 469 = 7*67
f(34) = 3903 = 3*1301
f(35) = 507 = 3*13*13
f(36) = 4211 = 4211
f(37) = 273 = 3*7*13
f(38) = 4527 = 3*3*503
f(39) = 293 = 293
f(40) = 4851 = 3*3*7*7*11
f(41) = 627 = 3*11*19
f(42) = 5183 = 71*73
f(43) = 669 = 3*223
f(44) = 5523 = 3*7*263
f(45) = 89 = 89
f(46) = 5871 = 3*19*103
f(47) = 189 = 3*3*3*7
f(48) = 6227 = 13*479
f(49) = 801 = 3*3*89
f(50) = 6591 = 3*13*13*13
f(51) = 847 = 7*11*11
f(52) = 6963 = 3*11*211
f(53) = 447 = 3*149
f(54) = 7343 = 7*1049
f(55) = 471 = 3*157
f(56) = 7731 = 3*3*859
f(57) = 991 = 991
f(58) = 8127 = 3*3*3*7*43
f(59) = 1041 = 3*347
f(60) = 8531 = 19*449
f(61) = 273 = 3*7*13
f(62) = 8943 = 3*11*271
f(63) = 143 = 11*13
f(64) = 9363 = 3*3121
f(65) = 1197 = 3*3*7*19
f(66) = 9791 = 9791
f(67) = 1251 = 3*3*139
f(68) = 10227 = 3*7*487
f(69) = 653 = 653
f(70) = 10671 = 3*3557
f(71) = 681 = 3*227
f(72) = 11123 = 7*7*227
f(73) = 1419 = 3*11*43
f(74) = 11583 = 3*3*3*3*11*13
f(75) = 1477 = 7*211
f(76) = 12051 = 3*3*13*103
f(77) = 3 = 3
f(78) = 12527 = 12527
f(79) = 399 = 3*7*19
f(80) = 13011 = 3*4337
f(81) = 1657 = 1657
f(82) = 13503 = 3*7*643
f(83) = 1719 = 3*3*191
f(84) = 14003 = 11*19*67
f(85) = 891 = 3*3*3*3*11
f(86) = 14511 = 3*7*691
f(87) = 923 = 13*71
f(88) = 15027 = 3*5009
f(89) = 1911 = 3*7*7*13
f(90) = 15551 = 15551
f(91) = 1977 = 3*659
f(92) = 16083 = 3*3*1787
f(93) = 511 = 7*73
f(94) = 16623 = 3*3*1847
f(95) = 33 = 3*11
f(96) = 17171 = 7*11*223
f(97) = 2181 = 3*727
f(98) = 17727 = 3*19*311
f(99) = 2251 = 2251
f(100) = 18291 = 3*7*13*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+84x-109

f(0)=109
f(1)=3
f(2)=7
f(3)=19
f(4)=1
f(5)=1
f(6)=431
f(7)=11
f(8)=1
f(9)=13
f(10)=277
f(11)=1
f(12)=149
f(13)=1
f(14)=421
f(15)=43
f(16)=71
f(17)=67
f(18)=157
f(19)=1
f(20)=73
f(21)=131
f(22)=1
f(23)=1
f(24)=191
f(25)=1
f(26)=1
f(27)=1
f(28)=1009
f(29)=1
f(30)=1
f(31)=1
f(32)=1201
f(33)=1
f(34)=1301
f(35)=1
f(36)=4211
f(37)=1
f(38)=503
f(39)=293
f(40)=1
f(41)=1
f(42)=1
f(43)=223
f(44)=263
f(45)=89
f(46)=103
f(47)=1
f(48)=479
f(49)=1
f(50)=1
f(51)=1
f(52)=211
f(53)=1
f(54)=1049
f(55)=1
f(56)=859
f(57)=991
f(58)=1
f(59)=347
f(60)=449
f(61)=1
f(62)=271
f(63)=1
f(64)=3121
f(65)=1
f(66)=9791
f(67)=139
f(68)=487
f(69)=653
f(70)=3557
f(71)=227
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=12527
f(79)=1
f(80)=4337
f(81)=1657
f(82)=643
f(83)=1
f(84)=1
f(85)=1
f(86)=691
f(87)=1
f(88)=5009
f(89)=1
f(90)=15551
f(91)=659
f(92)=1787
f(93)=1
f(94)=1847
f(95)=1
f(96)=1
f(97)=727
f(98)=311
f(99)=2251

b) Substitution of the polynom
The polynom f(x)=x^2+84x-109 could be written as f(y)= y^2-1873 with x=y-42

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+42
f'(x)>2x+83

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

109, 3, 7, 19, 1, 1, 431, 11, 1, 13, 277, 1, 149, 1, 421, 43, 71, 67, 157, 1, 73, 131, 1, 1, 191, 1, 1, 1, 1009, 1, 1, 1, 1201, 1, 1301, 1, 4211, 1, 503, 293, 1, 1, 1, 223, 263, 89, 103, 1, 479, 1, 1, 1, 211, 1, 1049, 1, 859, 991, 1, 347, 449, 1, 271, 1, 3121, 1, 9791, 139, 487, 653, 3557, 227, 1, 1, 1, 1, 1, 1, 12527, 1, 4337, 1657, 643, 1, 1, 1, 691, 1, 5009, 1, 15551, 659, 1787, 1, 1847, 1, 1, 727, 311, 2251, 1, 1, 1451, 1, 6481, 2467, 607, 1, 20627, 1, 337, 673, 809, 1, 3209, 1, 179, 1, 719, 167, 24371, 1, 439, 3169, 1223, 1, 2027, 1, 1, 1, 3079, 1, 28403, 599, 1, 1, 523, 419, 1, 1, 947, 1, 1523, 1, 761, 197, 3719, 4231, 3803, 1, 3181, 1, 1, 4519, 937, 1, 5333, 1, 1, 1, 683, 1, 3613, 239, 4507, 1, 1, 1, 42227, 1777, 1, 5437, 1, 1, 2357, 1, 15217, 823, 1193, 1, 521, 997, 1789, 1, 1, 2069, 50111, 1, 233, 1609, 17317, 1, 52883, 1, 1, 617, 18257, 1151, 1, 1171, 6299, 1021, 1, 2423, 1, 1, 1, 1879, 2887, 283, 61631, 863, 1, 3947, 21221, 1, 5881, 1, 1, 1, 2473, 701, 9689, 1, 22961, 8677, 3331, 1, 587, 1, 1, 1, 1877, 1, 1109, 3119, 1, 1187, 773, 1, 11093, 3259, 26261, 1, 26641, 1, 81071, 1, 27409, 941, 1, 3499, 821, 887, 1361, 1, 743, 1, 6779, 3697, 2707, 1, 30181, 1, 13109, 1283, 1, 11701, 641, 1, 95471, 1, 977, 1, 1, 1, 99251, 2081, 4787, 6323, 33937, 1423, 1, 1, 2677, 1, 1, 1, 1, 1, 4013, 13627, 1741, 1, 10093, 1, 5351, 1087, 1, 1, 1621, 1, 38821, 1, 3571, 1, 17033, 1, 1031, 7583, 1, 2557, 1, 739, 41621, 1427, 1, 1, 127727, 1, 6151, 1249, 43541, 1, 18869, 2767, 1, 1, 1667, 5657, 136511, 1, 1, 1, 1, 1, 10847, 1, 1, 17911, 48017, 1, 1, 3049, 5449, 1, 16519, 1, 1951, 1, 2663, 1, 1, 2141, 154943, 1, 52177, 9833, 52709, 1, 1117, 6689, 1, 20269, 953, 853, 3359, 1723, 827, 1, 5087, 1, 169523, 1, 1327, 1, 8231, 7237, 174527, 7307, 2797, 1, 1, 1, 179603, 1, 4649, 3253, 1, 1277, 26393, 1289, 5651, 2129, 8963, 7879, 1, 1, 1, 463, 21499, 1, 1, 1, 1, 1, 1, 1, 28661, 1, 67477, 3631, 5237, 2137, 1, 1, 23099, 1, 3329, 1, 211571, 1, 10163, 13397, 71761, 1, 1039, 1, 73009, 491, 73637, 2311, 4547, 9323, 24967, 1, 1, 1, 17579, 1, 1, 28927, 1091, 1, 234323, 1, 11251, 1, 7219, 9967, 34313, 1, 8969, 1, 27127, 5107, 246131, 1471, 1, 1, 1, 1, 252143, 1, 1, 1, 6569, 1531, 3637, 1, 1, 2333, 29147, 10973, 1, 11059, 88817, 1, 1, 1, 1, 1, 90901, 1801, 1, 1, 4133, 5791, 1, 1, 1, 1069, 1, 1481, 1, 1279, 95857, 1, 289727, 577, 1, 18311, 1, 1, 296243, 1, 1579, 37441, 33403, 1, 302831, 1583, 101681, 1, 9311, 4283, 1, 1, 7993, 19553, 14951, 1, 316223, 1889, 3217, 1, 1, 1, 323027, 1, 2213, 1, 109201, 1, 47129, 1, 10067, 5953, 111509, 1, 17729, 1, 1, 2659, 1, 1, 1, 1307, 16487, 21713, 1, 1, 350963, 1, 6199, 1, 1, 1, 4651, 1, 4451, 1, 1, 15173, 1319, 1, 122597, 23063, 1, 1, 1, 1, 17863, 619, 2927, 1973, 54293, 15887, 2237, 1, 3889, 1, 387503, 1, 1831, 48907, 18691, 1823, 395027, 1, 1721, 1, 7019, 2389, 30971, 16829, 3463, 1, 15101, 8521, 58613, 1559, 12511, 51769, 1, 1447, 418031, 1, 1, 4057, 1987, 1, 38713, 1, 2267, 26861, 2521, 1, 61961, 18127, 1, 1, 11257, 1, 40153, 1, 2029, 55711, 3041, 9341, 23669, 9397, 1, 4363, 4597, 1, 6833, 4783, 153509, 1, 154417, 1, 66569, 6491, 156241, 2671, 1, 9851, 36479, 1, 52999, 59797, 5923, 1, 1, 1, 1, 5531, 162709, 1, 1, 1, 164581, 4421, 1607, 20749, 499391, 1, 1, 15739, 8017, 1, 1, 1, 1871, 1489, 1, 1, 46957, 1, 173137, 1, 174101, 1, 75029, 1, 58679, 1, 8429, 2017, 48541, 3187, 9419, 33647, 1747, 1, 542771, 7559, 1999, 1, 1, 1, 78809, 1, 61627, 9931, 1, 23297, 2657, 1, 187877, 1, 1, 1, 569663, 7933, 27271, 2243, 4463, 1, 1861, 24179, 1, 1, 4999, 1, 1, 12281, 197009, 74071, 1, 8273, 1, 1, 18191, 2351, 1, 1, 606527, 1949, 9677, 38201, 68087, 12799, 1, 2339, 4799, 11083, 207409, 1, 1, 1, 1, 1, 1, 2399, 1, 1, 1, 39983, 23753, 1, 4637, 1, 215921, 1, 19727, 1, 4919, 9109, 3271, 82387, 1, 13799, 663983, 1, 1901, 1, 1, 4001, 673811, 1759, 1697, 21211, 1, 9473, 97673, 1, 1, 1, 230117, 1, 693683, 4139, 77447, 87337, 11117, 1, 4723, 1, 3061, 4663, 18217, 1, 1, 4969, 12583, 1, 240209, 30097, 9403, 2749, 1, 11393, 1, 1, 734291, 1, 245909, 92431, 13003, 1, 1, 1, 1, 4933, 1, 31387, 8297, 7883, 2161, 1, 1, 1, 765503, 4567, 256337, 1, 36787, 1, 4943, 1, 37123, 1, 1, 1, 8839, 1, 87803, 14143, 1, 33149, 113909, 16649, 1867, 4561, 1, 3733, 42533, 1, 270577, 25423, 1, 1, 818963, 3109, 1, 7927, 1, 1, 1, 17327, 2549, 2131, 1, 1, 76441, 1, 281509, 26449, 1, 35419, 3449, 35573, 1, 53591, 95479, 1, 1, 36037, 6719, 15511, 290161, 1, 1, 1, 1, 1, 1, 3347, 8597, 1, 98807, 55697, 1, 1, 1, 37447, 3299, 1, 27407, 1, 129749, 12641, 304021, 1, 305297, 19121, 1, 1, 1, 1, 1, 38723, 3541, 9721, 44531, 7321, 313009, 1, 1, 1, 2207, 1, 1, 1, 136373, 39857, 1, 1, 15277, 5023, 87853, 1, 323441, 9349, 324757, 1, 4093, 2269, 46771, 61511, 328721, 1, 1, 1, 110459, 4447, 1, 5209, 1, 1, 335381, 126019, 4373, 1, 6073, 7057, 48487, 1, 340757, 1, 2843, 1, 114487, 1, 1, 2273, 148361, 1, 1, 1, 49843, 7283, 80831, 2089, 2459, 12011, 1, 1, 1063151, 1, 5647, 133669, 119047, 44729, 8087, 1, 32719, 1,

6. Sequence of the polynom (only primes)

109, 3, 7, 19, 431, 11, 13, 277, 149, 421, 43, 71, 67, 157, 73, 131, 191, 1009, 1201, 1301, 4211, 503, 293, 223, 263, 89, 103, 479, 211, 1049, 859, 991, 347, 449, 271, 3121, 9791, 139, 487, 653, 3557, 227, 12527, 4337, 1657, 643, 691, 5009, 15551, 659, 1787, 1847, 727, 311, 2251, 1451, 6481, 2467, 607, 20627, 337, 673, 809, 3209, 179, 719, 167, 24371, 439, 3169, 1223, 2027, 3079, 28403, 599, 523, 419, 947, 1523, 761, 197, 3719, 4231, 3803, 3181, 4519, 937, 5333, 683, 3613, 239, 4507, 42227, 1777, 5437, 2357, 15217, 823, 1193, 521, 997, 1789, 2069, 50111, 233, 1609, 17317, 52883, 617, 18257, 1151, 1171, 6299, 1021, 2423, 1879, 2887, 283, 61631, 863, 3947, 21221, 5881, 2473, 701, 9689, 22961, 8677, 3331, 587, 1877, 1109, 3119, 1187, 773, 11093, 3259, 26261, 26641, 81071, 27409, 941, 3499, 821, 887, 1361, 743, 6779, 3697, 2707, 30181, 13109, 1283, 11701, 641, 95471, 977, 99251, 2081, 4787, 6323, 33937, 1423, 2677, 4013, 13627, 1741, 10093, 5351, 1087, 1621, 38821, 3571, 17033, 1031, 7583, 2557, 739, 41621, 1427, 127727, 6151, 1249, 43541, 18869, 2767, 1667, 5657, 136511, 10847, 17911, 48017, 3049, 5449, 16519, 1951, 2663, 2141, 154943, 52177, 9833, 52709, 1117, 6689, 20269, 953, 853, 3359, 1723, 827, 5087, 169523, 1327, 8231, 7237, 174527, 7307, 2797, 179603, 4649, 3253, 1277, 26393, 1289, 5651, 2129, 8963, 7879, 463, 21499, 28661, 67477, 3631, 5237, 2137, 23099, 3329, 211571, 10163, 13397, 71761, 1039, 73009, 491, 73637, 2311, 4547, 9323, 24967, 17579, 28927, 1091, 234323, 11251, 7219, 9967, 34313, 8969, 27127, 5107, 246131, 1471, 252143, 6569, 1531, 3637, 2333, 29147, 10973, 11059, 88817, 90901, 1801, 4133, 5791, 1069, 1481, 1279, 95857, 289727, 577, 18311, 296243, 1579, 37441, 33403, 302831, 1583, 101681, 9311, 4283, 7993, 19553, 14951, 316223, 1889, 3217, 323027, 2213, 109201, 47129, 10067, 5953, 111509, 17729, 2659, 1307, 16487, 21713, 350963, 6199, 4651, 4451, 15173, 1319, 122597, 23063, 17863, 619, 2927, 1973, 54293, 15887, 2237, 3889, 387503, 1831, 48907, 18691, 1823, 395027, 1721, 7019, 2389, 30971, 16829, 3463, 15101, 8521, 58613, 1559, 12511, 51769, 1447, 418031, 4057, 1987, 38713, 2267, 26861, 2521, 61961, 18127, 11257, 40153, 2029, 55711, 3041, 9341, 23669, 9397, 4363, 4597, 6833, 4783, 153509, 154417, 66569, 6491, 156241, 2671, 9851, 36479, 52999, 59797, 5923, 5531, 162709, 164581, 4421, 1607, 20749, 499391, 15739, 8017, 1871, 1489, 46957, 173137, 174101, 75029, 58679, 8429, 2017, 48541, 3187, 9419, 33647, 1747, 542771, 7559, 1999, 78809, 61627, 9931, 23297, 2657, 187877, 569663, 7933, 27271, 2243, 4463, 1861, 24179, 4999, 12281, 197009, 74071, 8273, 18191, 2351, 606527, 1949, 9677, 38201, 68087, 12799, 2339, 4799, 11083, 207409, 2399, 39983, 23753, 4637, 215921, 19727, 4919, 9109, 3271, 82387, 13799, 663983, 1901, 4001, 673811, 1759, 1697, 21211, 9473, 97673, 230117, 693683, 4139, 77447, 87337, 11117, 4723, 3061, 4663, 18217, 4969, 12583, 240209, 30097, 9403, 2749, 11393, 734291, 245909, 92431, 13003, 4933, 31387, 8297, 7883, 2161, 765503, 4567, 256337, 36787, 4943, 37123, 8839, 87803, 14143, 33149, 113909, 16649, 1867, 4561, 3733, 42533, 270577, 25423, 818963, 3109, 7927, 17327, 2549, 2131, 76441, 281509, 26449, 35419, 3449, 35573, 53591, 95479, 36037, 6719, 15511, 290161, 3347, 8597, 98807, 55697, 37447, 3299, 27407, 129749, 12641, 304021, 305297, 19121, 38723, 3541, 9721, 44531, 7321, 313009, 2207, 136373, 39857, 15277, 5023, 87853, 323441, 9349, 324757, 4093, 2269, 46771, 61511, 328721, 110459, 4447, 5209, 335381, 126019, 4373, 6073, 7057, 48487, 340757, 2843, 114487, 2273, 148361, 49843, 7283, 80831, 2089, 2459, 12011, 1063151, 5647, 133669, 119047, 44729, 8087, 32719,

7. Distribution of the primes

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

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)
1106420.6000000.4000000.2000000.0000000.0000000.000000
21005215370.5200000.1500000.3700008.6666673.75000018.500000
31.0005601064540.5600000.1060000.45400010.7692317.06666712.270270
410.0005.9597375.2220.5959000.0737000.52220010.6410716.95283011.502203
5100.00061.8465.54456.3020.6184600.0554400.56302010.3785877.52238810.781693
61.000.000632.01344.509587.5040.6320130.0445090.58750410.2191418.02831910.434869
710.000.0006.411.502371.7326.039.7700.6411500.0371730.60397710.1445738.35183910.280390
8100.000.00064.789.2333.200.96761.588.2660.6478920.0320100.61588310.1051578.61095310.197121
91.000.000.000653.077.55328.074.601625.002.9520.6530780.0280750.62500310.0800328.77066210.148085
1010.000.000.0006.571.867.165250.209.1816.321.657.9840.6571870.0250210.63216610.0629208.91229710.114605


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
385410.6250000.5000000.1250001.2500001.3333331.000000
41610550.6250000.3125000.3125002.0000001.2500005.000000
532176110.5312500.1875000.3437501.7000001.2000002.200000
664339240.5156250.1406250.3750001.9411761.5000002.181818
71286720470.5234380.1562500.3671882.0303032.2222221.958333
8256138341040.5390620.1328120.4062502.0597011.7000002.212766
9512277602170.5410160.1171880.4238282.0072461.7647062.086539
101.0245751084670.5615230.1054690.4560552.0758121.8000002.152074
112.0481.1801929880.5761720.0937500.4824222.0521741.7777782.115632
124.0962.3883402.0480.5830080.0830080.5000002.0237291.7708332.072875
138.1924.8616314.2300.5933840.0770260.5163572.0355951.8558822.065430
1416.3849.9021.1138.7890.6043700.0679320.5364382.0370301.7638672.077778
1532.76820.0092.05417.9550.6106260.0626830.5479432.0207031.8454632.042895
1665.53640.3493.82036.5290.6156770.0582890.5573882.0165431.8597862.034475
17131.07281.3327.06174.2710.6205140.0538710.5666432.0157131.8484292.033206
18262.144163.74313.249150.4940.6246300.0505410.5740892.0132671.8763632.026282
19524.288329.62024.867304.7530.6287000.0474300.5812702.0130331.8768962.025017
201.048.576663.08246.414616.6680.6323640.0442640.5881002.0116561.8664902.023501
212.097.1521.332.38087.8951.244.4850.6353280.0419120.5934172.0093741.8937172.018080
224.194.3042.676.377166.6132.509.7640.6380980.0397240.5983742.0087191.8955912.016709
238.388.6085.373.517315.8515.057.6660.6405730.0376520.6029212.0077581.8957162.015196
2416.777.21610.785.181602.12510.183.0560.6428470.0358890.6069572.0070991.9063582.013390
2533.554.43221.641.3281.150.36220.490.9660.6449620.0342830.6106782.0065801.9105042.012261
2667.108.86443.410.4622.201.36341.209.0990.6468660.0328030.6140632.0059061.9136262.011086
27134.217.72887.057.8854.220.43382.837.4520.6486320.0314450.6171872.0054591.9171912.010174
28268.435.456174.556.1928.103.364166.452.8280.6502720.0301870.6200852.0050591.9200312.009391
29536.870.912349.936.60215.587.587334.349.0150.6518080.0290340.6227742.0047221.9235952.008671
301.073.741.824701.388.68630.032.365671.356.3210.6532190.0279700.6252492.0043311.9266852.007951
312.147.483.6481.405.617.94957.941.9751.347.675.9740.6545420.0269810.6275612.0040501.9293182.007393
324.294.967.2962.816.554.310111.929.1462.704.625.1640.6557800.0260610.6297202.0037841.9317452.006881
338.589.934.5925.643.080.635216.478.5605.426.602.0750.6569410.0252010.6317402.0035411.9340682.006416
3417.179.869.18411.304.886.475419.146.81410.885.739.6610.6580310.0243980.6336332.0033181.9362052.005996


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
122100110
243200210
384210211
4165310311
5326320411
6649440522
7128209103935
8256341518414511
9512602138623823
101.024108377015391143
112.0481926912229682273
124.0963401222174812341128
138.1926312154158222785237
1416.3841.113386726148409151405
1532.7682.0547151.338283754274743
1665.5363.8201.3402.4795331.4035001.384
17131.0727.0612.4934.5679822.6049222.553
18262.14413.2494.6258.6231.7854.8981.7474.819
19524.28824.8678.64716.2193.3209.2803.2708.997
201.048.57646.41416.06930.3446.14617.1966.09416.978
212.097.15287.89530.42657.46811.48332.43411.55332.425
224.194.304166.61357.818108.79421.76061.50921.95761.387
238.388.608315.851109.353206.49741.340116.85441.397116.260
2416.777.216602.125208.297393.82778.597222.79478.940221.794
2533.554.4321.150.362397.276753.085150.086425.428150.339424.509
2667.108.8642.201.363759.3141.442.048286.652814.488287.047813.176
27134.217.7284.220.4331.453.7512.766.681548.9201.562.069549.3911.560.053
28268.435.4568.103.3642.788.6405.314.7231.053.3492.999.5061.053.0482.997.461
29536.870.91215.587.5875.358.76610.228.8202.023.4165.771.2712.022.2855.770.615
301.073.741.82430.032.36510.315.59519.716.7693.894.17811.124.7703.890.53511.122.882
312.147.483.64857.941.97519.877.39838.064.5767.501.12721.473.9047.496.24621.470.698
324.294.967.296111.929.14638.358.64173.570.50414.471.87241.496.89614.468.02741.492.351
338.589.934.592216.478.56074.119.349142.359.21027.958.60980.283.37527.951.94480.284.632
3417.179.869.184419.146.814143.400.222275.746.59154.079.133155.503.24954.065.938155.498.494


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
121100001
241100001
381100001
4165320032
53211833143
6642414106459
71284723241212617
8256104455927252428
951221710111657535453
101.024467221246127104119117
112.048988474514267227256238
124.0962.0489821.066529480545494
138.1924.2302.0752.1551.0979981.1301.005
1416.3848.7894.2764.5132.2962.0832.3152.095
1532.76817.9558.7879.1684.6884.2834.6784.306
1665.53636.52917.83918.6909.4788.7149.6708.667
17131.07274.27136.36837.90319.29317.84019.40717.731
18262.144150.49473.82676.66839.24135.94539.15036.158
19524.288304.753149.797154.95679.11973.22679.06473.344
201.048.576616.668303.987312.681159.740148.749159.385148.794
212.097.1521.244.485614.679629.806321.832300.798321.445300.410
224.194.3042.509.7641.240.5811.269.183647.360607.919647.312607.173
238.388.6085.057.6662.500.7092.556.9571.302.4581.227.4121.302.1361.225.660
2416.777.21610.183.0565.039.3495.143.7072.616.7822.473.1532.619.2442.473.877
2533.554.43220.490.96610.145.58210.345.3845.261.4864.982.4875.263.1404.983.853
2667.108.86441.209.09920.412.21420.796.88510.566.56110.031.13410.575.31110.036.093
27134.217.72882.837.45241.051.07441.786.37821.216.67320.194.37021.228.63620.197.773
28268.435.456166.452.82882.517.71883.935.11042.595.74540.627.29042.606.98540.622.808
29536.870.912334.349.015165.798.927168.550.08885.477.11581.688.34685.487.79481.695.760
301.073.741.824671.356.321333.044.382338.311.939171.480.287164.190.300171.498.941164.186.793
312.147.483.6481.347.675.974668.769.898678.906.076343.974.071329.857.953343.972.563329.871.387
324.294.967.2962.704.625.1641.342.537.7141.362.087.450689.788.527662.521.137689.796.020662.519.480
338.589.934.5925.426.602.0752.694.388.1942.732.213.8811.383.018.5111.330.288.4801.383.051.9401.330.243.144
3417.179.869.18410.885.739.6615.406.287.1125.479.452.5492.772.553.5842.670.323.9562.772.630.4492.670.231.672


8. Check for existing Integer Sequences by OEIS

Found in Database : 109, 3, 7, 19, 1, 1, 431, 11, 1, 13, 277, 1, 149, 1, 421, 43, 71, 67, 157, 1,
Found in Database : 109, 3, 7, 19, 431, 11, 13, 277, 149, 421, 43, 71, 67, 157, 73, 131, 191, 1009, 1201, 1301, 4211, 503, 293,
Found in Database : 3, 7, 11, 13, 19, 43, 67, 71, 73, 89, 103, 109, 131, 139, 149,