Inhaltsverzeichnis

Development of
Algorithmic Constructions

09:39:59
Deutsch
19.Apr 2024

Polynom = x^2+80x-41

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) = 41 = 41
f(1) = 5 = 5
f(2) = 123 = 3*41
f(3) = 13 = 13
f(4) = 295 = 5*59
f(5) = 3 = 3
f(6) = 475 = 5*5*19
f(7) = 71 = 71
f(8) = 663 = 3*13*17
f(9) = 95 = 5*19
f(10) = 859 = 859
f(11) = 15 = 3*5
f(12) = 1063 = 1063
f(13) = 73 = 73
f(14) = 1275 = 3*5*5*17
f(15) = 173 = 173
f(16) = 1495 = 5*13*23
f(17) = 201 = 3*67
f(18) = 1723 = 1723
f(19) = 115 = 5*23
f(20) = 1959 = 3*653
f(21) = 65 = 5*13
f(22) = 2203 = 2203
f(23) = 291 = 3*97
f(24) = 2455 = 5*491
f(25) = 323 = 17*19
f(26) = 2715 = 3*5*181
f(27) = 89 = 89
f(28) = 2983 = 19*157
f(29) = 195 = 3*5*13
f(30) = 3259 = 3259
f(31) = 425 = 5*5*17
f(32) = 3543 = 3*1181
f(33) = 461 = 461
f(34) = 3835 = 5*13*59
f(35) = 249 = 3*83
f(36) = 4135 = 5*827
f(37) = 67 = 67
f(38) = 4443 = 3*1481
f(39) = 575 = 5*5*23
f(40) = 4759 = 4759
f(41) = 615 = 3*5*41
f(42) = 5083 = 13*17*23
f(43) = 41 = 41
f(44) = 5415 = 3*5*19*19
f(45) = 349 = 349
f(46) = 5755 = 5*1151
f(47) = 741 = 3*13*19
f(48) = 6103 = 17*359
f(49) = 785 = 5*157
f(50) = 6459 = 3*2153
f(51) = 415 = 5*83
f(52) = 6823 = 6823
f(53) = 219 = 3*73
f(54) = 7195 = 5*1439
f(55) = 923 = 13*71
f(56) = 7575 = 3*5*5*101
f(57) = 971 = 971
f(58) = 7963 = 7963
f(59) = 255 = 3*5*17
f(60) = 8359 = 13*643
f(61) = 535 = 5*107
f(62) = 8763 = 3*23*127
f(63) = 1121 = 19*59
f(64) = 9175 = 5*5*367
f(65) = 1173 = 3*17*23
f(66) = 9595 = 5*19*101
f(67) = 613 = 613
f(68) = 10023 = 3*13*257
f(69) = 5 = 5
f(70) = 10459 = 10459
f(71) = 1335 = 3*5*89
f(72) = 10903 = 10903
f(73) = 1391 = 13*107
f(74) = 11355 = 3*5*757
f(75) = 181 = 181
f(76) = 11815 = 5*17*139
f(77) = 753 = 3*251
f(78) = 12283 = 71*173
f(79) = 1565 = 5*313
f(80) = 12759 = 3*4253
f(81) = 1625 = 5*5*5*13
f(82) = 13243 = 17*19*41
f(83) = 843 = 3*281
f(84) = 13735 = 5*41*67
f(85) = 437 = 19*23
f(86) = 14235 = 3*5*13*73
f(87) = 1811 = 1811
f(88) = 14743 = 23*641
f(89) = 1875 = 3*5*5*5*5
f(90) = 15259 = 15259
f(91) = 485 = 5*97
f(92) = 15783 = 3*5261
f(93) = 1003 = 17*59
f(94) = 16315 = 5*13*251
f(95) = 2073 = 3*691
f(96) = 16855 = 5*3371
f(97) = 2141 = 2141
f(98) = 17403 = 3*5801
f(99) = 1105 = 5*13*17
f(100) = 17959 = 17959

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+80x-41

f(0)=41
f(1)=5
f(2)=3
f(3)=13
f(4)=59
f(5)=1
f(6)=19
f(7)=71
f(8)=17
f(9)=1
f(10)=859
f(11)=1
f(12)=1063
f(13)=73
f(14)=1
f(15)=173
f(16)=23
f(17)=67
f(18)=1723
f(19)=1
f(20)=653
f(21)=1
f(22)=2203
f(23)=97
f(24)=491
f(25)=1
f(26)=181
f(27)=89
f(28)=157
f(29)=1
f(30)=3259
f(31)=1
f(32)=1181
f(33)=461
f(34)=1
f(35)=83
f(36)=827
f(37)=1
f(38)=1481
f(39)=1
f(40)=4759
f(41)=1
f(42)=1
f(43)=1
f(44)=1
f(45)=349
f(46)=1151
f(47)=1
f(48)=359
f(49)=1
f(50)=2153
f(51)=1
f(52)=6823
f(53)=1
f(54)=1439
f(55)=1
f(56)=101
f(57)=971
f(58)=7963
f(59)=1
f(60)=643
f(61)=107
f(62)=127
f(63)=1
f(64)=367
f(65)=1
f(66)=1
f(67)=613
f(68)=257
f(69)=1
f(70)=10459
f(71)=1
f(72)=10903
f(73)=1
f(74)=757
f(75)=1
f(76)=139
f(77)=251
f(78)=1
f(79)=313
f(80)=4253
f(81)=1
f(82)=1
f(83)=281
f(84)=1
f(85)=1
f(86)=1
f(87)=1811
f(88)=641
f(89)=1
f(90)=15259
f(91)=1
f(92)=5261
f(93)=1
f(94)=1
f(95)=691
f(96)=3371
f(97)=2141
f(98)=5801
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+80x-41 could be written as f(y)= y^2-1641 with x=y-40

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+40
f'(x)>2x+79

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

41, 5, 3, 13, 59, 1, 19, 71, 17, 1, 859, 1, 1063, 73, 1, 173, 23, 67, 1723, 1, 653, 1, 2203, 97, 491, 1, 181, 89, 157, 1, 3259, 1, 1181, 461, 1, 83, 827, 1, 1481, 1, 4759, 1, 1, 1, 1, 349, 1151, 1, 359, 1, 2153, 1, 6823, 1, 1439, 1, 101, 971, 7963, 1, 643, 107, 127, 1, 367, 1, 1, 613, 257, 1, 10459, 1, 10903, 1, 757, 1, 139, 251, 1, 313, 4253, 1, 1, 281, 1, 1, 1, 1811, 641, 1, 15259, 1, 5261, 1, 1, 691, 3371, 2141, 5801, 1, 17959, 1, 18523, 2351, 1, 2423, 787, 1, 881, 1, 409, 1, 1, 907, 883, 1399, 1, 719, 1, 197, 1, 607, 1, 1, 5051, 1, 1, 193, 8861, 673, 27259, 1, 27943, 1, 1, 3623, 5867, 1237, 2311, 1, 10253, 389, 1657, 1327, 379, 4073, 1, 2083, 33703, 1, 2027, 1, 199, 4451, 1, 1, 1471, 1, 659, 1, 431, 1, 39163, 2473, 1, 631, 1, 1, 1, 1051, 14153, 1, 3331, 911, 8831, 5573, 3001, 1, 2699, 1, 1, 1, 15881, 6011, 571, 1, 9887, 1559, 1, 1, 3943, 1, 52183, 6581, 3541, 1, 569, 1, 4231, 1, 811, 1, 56923, 1, 11579, 1, 1, 1, 59863, 503, 60859, 1, 1213, 1949, 1, 1, 983, 1, 1, 1, 929, 277, 67003, 1, 1, 8573, 601, 1451, 70183, 1, 23753, 1, 991, 3037, 773, 1, 4969, 1, 1129, 1, 1301, 1933, 1997, 4903, 15803, 829, 1, 10091, 661, 1, 6343, 1, 4919, 1, 5653, 821, 1, 3607, 863, 1097, 29453, 1, 89563, 1, 3631, 11423, 6133, 1447, 1, 1, 1601, 2377, 1, 12041, 19391, 1, 1511, 3089, 33161, 2503, 5927, 1, 102043, 3209, 1, 1, 1231, 1, 105943, 1, 35753, 1, 4721, 1, 1, 1, 7417, 823, 112603, 1, 1373, 1433, 2957, 853, 23339, 1, 4723, 1, 39821, 751, 6361, 1013, 122263, 809, 1, 1, 1, 2621, 5501, 3181, 1, 3217, 129403, 2711, 26171, 1, 8821, 16631, 1, 1, 3299, 1, 2399, 1, 27647, 5791, 27947, 1033, 1, 1, 142759, 1, 919, 18131, 9721, 1, 2267, 1543, 1, 1871, 50153, 1, 2269, 6367, 1, 9649, 2069, 2437, 2657, 1, 158359, 1, 1, 1, 1, 1, 1, 1, 54941, 1, 8761, 1, 1, 5279, 11317, 21323, 34283, 7177, 2371, 1087, 4481, 439, 1, 1, 1549, 1721, 1, 1, 1, 1, 183259, 4603, 1, 1787, 1, 977, 37691, 11833, 4877, 1, 1381, 1607, 193723, 12163, 13033, 1, 1, 1, 10477, 4999, 1, 1, 4943, 4241, 8179, 25673, 1, 1, 2851, 1, 209959, 1, 4153, 26591, 1, 8941, 43103, 1, 72461, 2729, 9533, 1, 17011, 1, 14869, 13999, 44987, 1, 226843, 1, 76253, 5743, 230683, 1, 46523, 1123, 1, 499, 236503, 1979, 1, 1, 80141, 1, 48479, 10141, 1, 30671, 6317, 1, 2459, 1039, 13177, 2417, 1, 1667, 1, 1, 256423, 1609, 1, 1, 2927, 1, 52511, 8237, 1, 16603, 266683, 1, 268759, 1, 90281, 16993, 1, 1427, 1, 34511, 92381, 1, 16427, 1, 6863, 1, 1, 35573, 57131, 1, 1, 1, 5087, 1, 1, 1, 1, 36923, 1, 547, 3079, 1249, 23143, 7549, 101021, 1, 12211, 1, 1, 2411, 6073, 1, 1987, 2609, 1, 1, 1, 1, 63743, 13327, 24691, 8053, 1, 1, 325543, 1, 1, 1, 1693, 41411, 17497, 1, 334759, 1, 112361, 42281, 67883, 617, 68351, 21433, 4987, 1, 1741, 2897, 1, 1, 1801, 2753, 14143, 1, 20939, 8929, 6287, 1, 27751, 7541, 1, 1, 24373, 3527, 16001, 1, 2917, 1, 124301, 1, 1831, 1, 1, 47381, 126761, 1, 29443, 1, 1499, 48311, 25849, 48623, 4591, 2039, 30211, 1, 1, 1, 23399, 1279, 1, 1321, 1, 1, 1, 3389, 407959, 1, 136841, 1, 82619, 1, 1, 52121, 1303, 1, 420859, 1759, 423463, 6637, 1, 1, 1, 1, 2383, 1, 1, 5441, 1, 1, 1489, 55073, 1733, 2131, 1, 1, 447259, 2243, 1, 2969, 90527, 4729, 4793, 1, 152681, 2297, 1, 3851, 463483, 1709, 31081, 1, 1, 19597, 471703, 11827, 1777, 1487, 25117, 1, 5647, 3167, 1, 60521, 1, 2029, 1, 3061, 1621, 2677, 19759, 20641, 7643, 15569, 166541, 6263, 6883, 1, 5003, 1, 1783, 31849, 102203, 1, 3697, 1, 1, 2591, 519643, 1, 8039, 32749, 1523, 1, 31079, 1, 27961, 6659, 13697, 1, 1, 22441, 108011, 1, 181001, 1, 545959, 2281, 5659, 1, 36793, 1, 1, 1, 557863, 1, 1, 1, 1, 23557, 1, 1, 37993, 1, 44071, 4787, 575959, 14437, 11353, 2791, 116411, 6079, 117023, 73331, 1, 1, 591259, 1, 25841, 37243, 39829, 74873, 9239, 25087, 14723, 1, 4933, 1901, 10337, 1, 9431, 4519, 41077, 1, 619303, 1, 1, 15601, 9067, 78401, 1877, 1, 1, 1, 1, 15919, 638359, 5333, 2903, 1, 8597, 1, 1, 27067, 651223, 1, 1, 1, 657703, 1, 1973, 1, 44281, 83231, 29021, 1, 2143, 1, 2707, 1, 135467, 1, 1, 42643, 1, 857, 40427, 5741, 690583, 86531, 46261, 21737, 1, 14561, 1, 1, 234653, 1, 1, 14771, 7481, 11131, 9521, 1, 717463, 1, 6737, 1, 241421, 1, 2239, 30391, 2003, 1, 244841, 9203, 1, 1, 1, 4889, 1, 93323, 7877, 1, 8447, 9419, 1, 1, 758743, 31687, 1, 3673, 1, 1, 769243, 1, 59443, 1, 13619, 12157, 6781, 1, 156671, 1, 20177, 19717, 790459, 3301, 794023, 1913, 53173, 99923, 1, 33457, 47339, 1, 4567, 1, 1, 1, 1, 1, 4201, 1, 822823, 1, 35933, 20707, 3109, 103991, 1, 1, 167483, 52453, 1, 1, 1, 1, 848443, 2797, 56809, 26687, 171167, 2749, 12829, 1, 12511, 5407, 3923, 1, 174143, 109073, 1, 109541, 51659, 1, 67843, 1, 1, 110951, 4339, 2857, 35731, 1, 4463, 1, 6481, 7523, 904663, 1, 12113, 3347, 7933, 1, 3709, 1, 306653, 1, 2647, 9643, 185531, 58099, 1, 116681, 2287, 1, 13229, 1, 18493, 14767, 189407, 39541, 8269, 6269, 318281, 1, 50461, 4003, 962683, 1, 4957, 2953, 1, 20261, 1, 1, 326153, 1, 75571, 41017, 197279, 1, 1, 1, 994363, 1, 58727, 1, 1, 62773, 1, 1, 11887, 126551, 338141, 25411, 1, 1, 1022503, 64033, 68437, 1, 206123, 2531, 1, 12959, 1, 1, 45341, 1, 5107, 5701, 1, 32909, 1055143, 1, 1059259, 1, 354461, 1, 1, 22283, 16487, 1, 358601, 26947,

6. Sequence of the polynom (only primes)

41, 5, 3, 13, 59, 19, 71, 17, 859, 1063, 73, 173, 23, 67, 1723, 653, 2203, 97, 491, 181, 89, 157, 3259, 1181, 461, 83, 827, 1481, 4759, 349, 1151, 359, 2153, 6823, 1439, 101, 971, 7963, 643, 107, 127, 367, 613, 257, 10459, 10903, 757, 139, 251, 313, 4253, 281, 1811, 641, 15259, 5261, 691, 3371, 2141, 5801, 17959, 18523, 2351, 2423, 787, 881, 409, 907, 883, 1399, 719, 197, 607, 5051, 193, 8861, 673, 27259, 27943, 3623, 5867, 1237, 2311, 10253, 389, 1657, 1327, 379, 4073, 2083, 33703, 2027, 199, 4451, 1471, 659, 431, 39163, 2473, 631, 1051, 14153, 3331, 911, 8831, 5573, 3001, 2699, 15881, 6011, 571, 9887, 1559, 3943, 52183, 6581, 3541, 569, 4231, 811, 56923, 11579, 59863, 503, 60859, 1213, 1949, 983, 929, 277, 67003, 8573, 601, 1451, 70183, 23753, 991, 3037, 773, 4969, 1129, 1301, 1933, 1997, 4903, 15803, 829, 10091, 661, 6343, 4919, 5653, 821, 3607, 863, 1097, 29453, 89563, 3631, 11423, 6133, 1447, 1601, 2377, 12041, 19391, 1511, 3089, 33161, 2503, 5927, 102043, 3209, 1231, 105943, 35753, 4721, 7417, 823, 112603, 1373, 1433, 2957, 853, 23339, 4723, 39821, 751, 6361, 1013, 122263, 809, 2621, 5501, 3181, 3217, 129403, 2711, 26171, 8821, 16631, 3299, 2399, 27647, 5791, 27947, 1033, 142759, 919, 18131, 9721, 2267, 1543, 1871, 50153, 2269, 6367, 9649, 2069, 2437, 2657, 158359, 54941, 8761, 5279, 11317, 21323, 34283, 7177, 2371, 1087, 4481, 439, 1549, 1721, 183259, 4603, 1787, 977, 37691, 11833, 4877, 1381, 1607, 193723, 12163, 13033, 10477, 4999, 4943, 4241, 8179, 25673, 2851, 209959, 4153, 26591, 8941, 43103, 72461, 2729, 9533, 17011, 14869, 13999, 44987, 226843, 76253, 5743, 230683, 46523, 1123, 499, 236503, 1979, 80141, 48479, 10141, 30671, 6317, 2459, 1039, 13177, 2417, 1667, 256423, 1609, 2927, 52511, 8237, 16603, 266683, 268759, 90281, 16993, 1427, 34511, 92381, 16427, 6863, 35573, 57131, 5087, 36923, 547, 3079, 1249, 23143, 7549, 101021, 12211, 2411, 6073, 1987, 2609, 63743, 13327, 24691, 8053, 325543, 1693, 41411, 17497, 334759, 112361, 42281, 67883, 617, 68351, 21433, 4987, 1741, 2897, 1801, 2753, 14143, 20939, 8929, 6287, 27751, 7541, 24373, 3527, 16001, 2917, 124301, 1831, 47381, 126761, 29443, 1499, 48311, 25849, 48623, 4591, 2039, 30211, 23399, 1279, 1321, 3389, 407959, 136841, 82619, 52121, 1303, 420859, 1759, 423463, 6637, 2383, 5441, 1489, 55073, 1733, 2131, 447259, 2243, 2969, 90527, 4729, 4793, 152681, 2297, 3851, 463483, 1709, 31081, 19597, 471703, 11827, 1777, 1487, 25117, 5647, 3167, 60521, 2029, 3061, 1621, 2677, 19759, 20641, 7643, 15569, 166541, 6263, 6883, 5003, 1783, 31849, 102203, 3697, 2591, 519643, 8039, 32749, 1523, 31079, 27961, 6659, 13697, 22441, 108011, 181001, 545959, 2281, 5659, 36793, 557863, 23557, 37993, 44071, 4787, 575959, 14437, 11353, 2791, 116411, 6079, 117023, 73331, 591259, 25841, 37243, 39829, 74873, 9239, 25087, 14723, 4933, 1901, 10337, 9431, 4519, 41077, 619303, 15601, 9067, 78401, 1877, 15919, 638359, 5333, 2903, 8597, 27067, 651223, 657703, 1973, 44281, 83231, 29021, 2143, 2707, 135467, 42643, 857, 40427, 5741, 690583, 86531, 46261, 21737, 14561, 234653, 14771, 7481, 11131, 9521, 717463, 6737, 241421, 2239, 30391, 2003, 244841, 9203, 4889, 93323, 7877, 8447, 9419, 758743, 31687, 3673, 769243, 59443, 13619, 12157, 6781, 156671, 20177, 19717, 790459, 3301, 794023, 1913, 53173, 99923, 33457, 47339, 4567, 4201, 822823, 35933, 20707, 3109, 103991, 167483, 52453, 848443, 2797, 56809, 26687, 171167, 2749, 12829, 12511, 5407, 3923, 174143, 109073, 109541, 51659, 67843, 110951, 4339, 2857, 35731, 4463, 6481, 7523, 904663, 12113, 3347, 7933, 3709, 306653, 2647, 9643, 185531, 58099, 116681, 2287, 13229, 18493, 14767, 189407, 39541, 8269, 6269, 318281, 50461, 4003, 962683, 4957, 2953, 20261, 326153, 75571, 41017, 197279, 994363, 58727, 62773, 11887, 126551, 338141, 25411, 1022503, 64033, 68437, 206123, 2531, 12959, 45341, 5107, 5701, 32909, 1055143, 1059259, 354461, 22283, 16487, 358601, 26947,

7. Distribution of the primes

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

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)
1109360.9000000.3000000.9000000.0000000.0000000.000000
21005714430.5700000.1400000.5700006.3333334.6666677.166667
31.000596735230.5960000.0730000.59600010.4561415.21428612.162790
410.0006.1505315.6190.6150000.0531000.61500010.3187927.27397310.743786
5100.00063.3974.10159.2960.6339700.0410100.63397010.3084557.72316410.552768
61.000.000644.48733.492610.9950.6444870.0334920.64448710.1658918.16678910.304152
710.000.0006.516.611283.1906.233.4210.6516610.0283190.65166110.1113158.45545210.202082
8100.000.00065.700.2492.450.92763.249.3220.6570030.0245090.65700310.0819658.65470910.146807
91.000.000.000661.114.42621.618.161639.496.2650.6611140.0216180.66111410.0625878.82040110.110722
1010.000.000.0006.643.826.284193.463.9626.450.362.3220.6643830.0193460.66438310.0494358.94914210.086631


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
388261.0000000.2500000.7500001.6000001.0000002.000000
41612480.7500000.2500000.5000001.5000002.0000001.333333
532237160.7187500.2187500.5000001.9166671.7500002.000000
6643910290.6093750.1562500.4531251.6956521.4285711.812500
71287015550.5468750.1171880.4296881.7948721.5000001.896552
8256145251200.5664060.0976560.4687502.0714291.6666672.181818
9512300422580.5859380.0820310.5039062.0689651.6800002.150000
101.024611745370.5966800.0722660.5244142.0366671.7619052.081395
112.0481.2331371.0960.6020510.0668950.5351562.0180031.8513512.040968
124.0962.5062352.2710.6118160.0573730.5544432.0324411.7153282.072080
138.1925.0414414.6000.6153560.0538330.5615232.0115721.8765962.025539
1416.38410.1628549.3080.6202390.0521240.5681152.0158701.9365082.023478
1532.76820.5081.54418.9640.6258540.0471190.5787352.0181071.8079632.037387
1665.53641.3542.81538.5390.6310120.0429530.5880582.0164811.8231872.032219
17131.07283.3375.20178.1360.6358110.0396800.5961302.0152101.8476022.027453
18262.144167.5449.796157.7480.6391300.0373690.6017612.0104401.8834842.018890
19524.288336.61518.426318.1890.6420420.0351450.6068972.0091141.8809722.017071
201.048.576675.86434.972640.8920.6445540.0333520.6112022.0078251.8979702.014187
212.097.1521.356.54766.1971.290.3500.6468520.0315650.6152872.0071301.8928572.013366
224.194.3042.722.981125.9092.597.0720.6492090.0300190.6191902.0072881.9020352.012688
238.388.6085.462.752240.2125.222.5400.6512110.0286360.6225752.0061661.9078222.010934
2416.777.21610.956.220458.33610.497.8840.6530420.0273190.6257232.0056231.9080482.010111
2533.554.43221.966.855877.61321.089.2420.6546630.0261550.6285082.0049671.9147812.008904
2667.108.86444.036.9491.683.53442.353.4150.6562020.0250870.6311152.0047001.9183102.008295
27134.217.72888.260.7543.234.09585.026.6590.6575940.0240960.6334982.0042431.9210162.007551
28268.435.456176.871.9116.220.989170.650.9220.6588990.0231750.6357242.0039701.9235642.007029
29536.870.912354.386.17811.989.187342.396.9910.6600960.0223320.6377642.0036321.9272162.006418
301.073.741.824709.987.75923.127.453686.860.3060.6612280.0215390.6396882.0034301.9290262.006035
312.147.483.6481.422.234.22444.680.9431.377.553.2810.6622790.0208060.6414732.0031811.9319442.005580
324.294.967.2962.848.698.89886.420.3982.762.278.5000.6632640.0201210.6431432.0029751.9341672.005206
338.589.934.5925.705.323.278167.339.7465.537.983.5320.6641870.0194810.6447062.0027821.9363452.004861
3417.179.869.18411.425.558.910324.372.29811.101.186.6120.6650550.0188810.6461742.0026141.9384062.004554


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
382011100
4164211201
5327511501
66410811603
7128151311905
825625231114010
951242401123018
101.02474721134039
112.0481371351170066
124.096235233111160118
138.192441439112270213
1416.384854852114370416
1532.7681.5441.542117560787
1665.5362.8152.813111.36501.449
17131.0725.2015.199112.56302.637
18262.1449.7969.794114.86104.934
19524.28818.42618.424119.17609.249
201.048.57634.97234.9701117.318017.653
212.097.15266.19766.1951132.934033.262
224.194.304125.909125.9071162.731063.177
238.388.608240.212240.21011119.7930120.418
2416.777.216458.336458.33411228.9580229.377
2533.554.432877.613877.61111438.8480438.764
2667.108.8641.683.5341.683.53211841.4000842.133
27134.217.7283.234.0953.234.093111.616.23001.617.864
28268.435.4566.220.9896.220.987113.109.56803.111.420
29536.870.91211.989.18711.989.185115.994.62305.994.563
301.073.741.82423.127.45323.127.4511111.563.465011.563.987
312.147.483.64844.680.94344.680.9411122.342.713022.338.229
324.294.967.29686.420.39886.420.3961143.213.535043.206.862
338.589.934.592167.339.746167.339.7441183.671.479083.668.266
3417.179.869.184324.372.298324.372.29611162.188.9520162.183.345


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
243120120
386241221
4168352231
53216794471
6642911186896
712855213413161511
8256120516926323329
951225810815062616669
101.024537242295135135134133
112.0481.096489607259278284275
124.0962.2711.0091.262539584585563
138.1924.6002.1012.4991.1051.1341.1961.165
1416.3849.3084.3134.9952.2792.2912.3882.350
1532.76818.9648.81710.1474.6964.6984.8284.742
1665.53638.53918.07320.4669.5179.5959.7689.659
17131.07278.13636.81541.32119.47619.39519.67819.587
18262.144157.74874.53783.21139.41039.22639.71839.394
19524.288318.189151.174167.01579.63579.18880.21379.153
201.048.576640.892305.534335.358160.563159.876161.174159.279
212.097.1521.290.350616.969673.381323.604321.439324.767320.540
224.194.3042.597.0721.245.9601.351.112651.752647.111652.503645.706
238.388.6085.222.5402.511.6692.710.8711.310.4011.300.2951.311.4591.300.385
2416.777.21610.497.8845.059.3035.438.5812.635.0632.613.4562.633.6382.615.727
2533.554.43221.089.24210.182.18510.907.0575.291.2905.253.8275.291.3505.252.775
2667.108.86442.353.41520.480.08821.873.32710.626.08710.550.16610.625.79810.551.364
27134.217.72885.026.65941.171.78943.854.87021.329.48021.183.54621.330.67421.182.959
28268.435.456170.650.92282.732.27087.918.65242.803.44042.518.21042.808.17642.521.096
29536.870.912342.396.991166.214.120176.182.87185.866.19885.326.99285.872.05385.331.748
301.073.741.824686.860.306333.836.491353.023.815172.231.936171.189.721172.240.068171.198.581
312.147.483.6481.377.553.281670.273.897707.279.384345.390.018343.368.003345.414.106343.381.154
324.294.967.2962.762.278.5001.345.382.9921.416.895.508692.504.021688.624.664692.529.879688.619.936
338.589.934.5925.537.983.5322.699.804.7092.838.178.8231.388.262.9841.380.753.1841.388.279.3511.380.688.013
3417.179.869.18411.101.186.6125.416.511.7765.684.674.8362.782.623.7292.767.989.6072.782.683.1282.767.890.148


8. Check for existing Integer Sequences by OEIS

Found in Database : 41, 5, 3, 13, 59, 1, 19, 71, 17, 1, 859, 1, 1063, 73, 1, 173, 23, 67, 1723, 1,
Found in Database : 41, 5, 3, 13, 59, 19, 71, 17, 859, 1063, 73, 173, 23, 67, 1723, 653, 2203, 97, 491, 181, 89, 157, 3259, 1181, 461, 83, 827, 1481,
Found in Database : 3, 5, 13, 17, 19, 23, 41, 59, 67, 71, 73, 83, 89, 97, 101, 107, 127, 139,