Inhaltsverzeichnis

Development of
Algorithmic Constructions

21:34:18
Deutsch
19.Apr 2024

Polynom = x^2-84x-13

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) = 13 = 13
f(1) = 3 = 3
f(2) = 177 = 3*59
f(3) = 1 = 1
f(4) = 333 = 3*3*37
f(5) = 51 = 3*17
f(6) = 481 = 13*37
f(7) = 69 = 3*23
f(8) = 621 = 3*3*3*23
f(9) = 43 = 43
f(10) = 753 = 3*251
f(11) = 51 = 3*17
f(12) = 877 = 877
f(13) = 117 = 3*3*13
f(14) = 993 = 3*331
f(15) = 131 = 131
f(16) = 1101 = 3*367
f(17) = 9 = 3*3
f(18) = 1201 = 1201
f(19) = 39 = 3*13
f(20) = 1293 = 3*431
f(21) = 167 = 167
f(22) = 1377 = 3*3*3*3*17
f(23) = 177 = 3*59
f(24) = 1453 = 1453
f(25) = 93 = 3*31
f(26) = 1521 = 3*3*13*13
f(27) = 97 = 97
f(28) = 1581 = 3*17*31
f(29) = 201 = 3*67
f(30) = 1633 = 23*71
f(31) = 207 = 3*3*23
f(32) = 1677 = 3*13*43
f(33) = 53 = 53
f(34) = 1713 = 3*571
f(35) = 27 = 3*3*3
f(36) = 1741 = 1741
f(37) = 219 = 3*73
f(38) = 1761 = 3*587
f(39) = 221 = 13*17
f(40) = 1773 = 3*3*197
f(41) = 111 = 3*37
f(42) = 1777 = 1777
f(43) = 111 = 3*37
f(44) = 1773 = 3*3*197
f(45) = 221 = 13*17
f(46) = 1761 = 3*587
f(47) = 219 = 3*73
f(48) = 1741 = 1741
f(49) = 27 = 3*3*3
f(50) = 1713 = 3*571
f(51) = 53 = 53
f(52) = 1677 = 3*13*43
f(53) = 207 = 3*3*23
f(54) = 1633 = 23*71
f(55) = 201 = 3*67
f(56) = 1581 = 3*17*31
f(57) = 97 = 97
f(58) = 1521 = 3*3*13*13
f(59) = 93 = 3*31
f(60) = 1453 = 1453
f(61) = 177 = 3*59
f(62) = 1377 = 3*3*3*3*17
f(63) = 167 = 167
f(64) = 1293 = 3*431
f(65) = 39 = 3*13
f(66) = 1201 = 1201
f(67) = 9 = 3*3
f(68) = 1101 = 3*367
f(69) = 131 = 131
f(70) = 993 = 3*331
f(71) = 117 = 3*3*13
f(72) = 877 = 877
f(73) = 51 = 3*17
f(74) = 753 = 3*251
f(75) = 43 = 43
f(76) = 621 = 3*3*3*23
f(77) = 69 = 3*23
f(78) = 481 = 13*37
f(79) = 51 = 3*17
f(80) = 333 = 3*3*37
f(81) = 1 = 1
f(82) = 177 = 3*59
f(83) = 3 = 3
f(84) = 13 = 13
f(85) = 9 = 3*3
f(86) = 159 = 3*53
f(87) = 31 = 31
f(88) = 339 = 3*113
f(89) = 27 = 3*3*3
f(90) = 527 = 17*31
f(91) = 39 = 3*13
f(92) = 723 = 3*241
f(93) = 103 = 103
f(94) = 927 = 3*3*103
f(95) = 129 = 3*43
f(96) = 1139 = 17*67
f(97) = 39 = 3*13
f(98) = 1359 = 3*3*151
f(99) = 23 = 23
f(100) = 1587 = 3*23*23

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-13

f(0)=13
f(1)=3
f(2)=59
f(3)=1
f(4)=37
f(5)=17
f(6)=1
f(7)=23
f(8)=1
f(9)=43
f(10)=251
f(11)=1
f(12)=877
f(13)=1
f(14)=331
f(15)=131
f(16)=367
f(17)=1
f(18)=1201
f(19)=1
f(20)=431
f(21)=167
f(22)=1
f(23)=1
f(24)=1453
f(25)=31
f(26)=1
f(27)=97
f(28)=1
f(29)=67
f(30)=71
f(31)=1
f(32)=1
f(33)=53
f(34)=571
f(35)=1
f(36)=1741
f(37)=73
f(38)=587
f(39)=1
f(40)=197
f(41)=1
f(42)=1777
f(43)=1
f(44)=1
f(45)=1
f(46)=1
f(47)=1
f(48)=1
f(49)=1
f(50)=1
f(51)=1
f(52)=1
f(53)=1
f(54)=1
f(55)=1
f(56)=1
f(57)=1
f(58)=1
f(59)=1
f(60)=1
f(61)=1
f(62)=1
f(63)=1
f(64)=1
f(65)=1
f(66)=1
f(67)=1
f(68)=1
f(69)=1
f(70)=1
f(71)=1
f(72)=1
f(73)=1
f(74)=1
f(75)=1
f(76)=1
f(77)=1
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=1
f(83)=1
f(84)=1
f(85)=1
f(86)=1
f(87)=1
f(88)=113
f(89)=1
f(90)=1
f(91)=1
f(92)=241
f(93)=103
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=151
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-84x-13 could be written as f(y)= y^2-1777 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-85 with x > 42

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

13, 3, 59, 1, 37, 17, 1, 23, 1, 43, 251, 1, 877, 1, 331, 131, 367, 1, 1201, 1, 431, 167, 1, 1, 1453, 31, 1, 97, 1, 67, 71, 1, 1, 53, 571, 1, 1741, 73, 587, 1, 197, 1, 1777, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 113, 1, 1, 1, 241, 103, 1, 1, 1, 1, 151, 1, 1, 1, 1823, 1, 1, 137, 773, 1, 2579, 1, 1, 373, 347, 1, 3407, 1, 1, 1, 1, 173, 1, 1, 1, 1, 1, 1, 5279, 227, 1873, 181, 1, 1, 6323, 271, 743, 859, 1, 1, 1, 1, 2609, 1, 2741, 1, 8627, 1, 1, 1, 1051, 1, 9887, 421, 1, 659, 1, 229, 863, 1, 1, 1489, 4049, 1, 971, 1, 257, 1669, 1511, 577, 613, 1, 541, 929, 1, 641, 15647, 1, 5393, 1, 5573, 1, 557, 1, 457, 1, 1, 389, 18959, 401, 1, 1, 6709, 1, 1, 1, 7109, 1, 1, 1, 1327, 953, 1, 1, 2647, 503, 569, 1033, 2791, 3181, 661, 1, 499, 1, 9041, 3433, 1, 1, 28499, 601, 9733, 1847, 3323, 1, 1, 1291, 1, 991, 1, 1, 887, 461, 1, 4243, 673, 1, 2699, 739, 11953, 1, 1, 1543, 2879, 1, 1, 1, 13009, 1, 39839, 1, 13553, 1, 13829, 1, 42323, 1, 14389, 5449, 1, 463, 44879, 1, 1, 1, 15541, 1, 47507, 1, 1, 1, 16433, 691, 50207, 2111, 17041, 1, 5783, 547, 1709, 1, 1997, 523, 18289, 1153, 55823, 1, 823, 7159, 1481, 809, 1, 617, 1, 941, 1, 2551, 3631, 2593, 6971, 1, 1, 1, 1, 907, 593, 8293, 719, 1, 2953, 1, 22993, 8689, 1, 1, 5471, 1493, 1, 4547, 1, 1, 1, 1, 25169, 2377, 25541, 1, 77747, 1, 26293, 9931, 1, 1, 3529, 1, 3049, 1, 1637, 1, 84659, 1, 1, 1, 29009, 1217, 88223, 3701, 2293, 1, 1, 1901, 947, 3853, 10343, 1, 1367, 1, 1, 1, 1, 937, 32693, 1, 99347, 2083, 1973, 6329, 1, 4273, 3329, 4327, 683, 1, 2713, 1109, 107123, 1, 977, 1, 1, 1, 111119, 1, 37489, 14143, 12647, 1, 1, 1, 1439, 1, 39313, 4943, 1, 1667, 40241, 7589, 40709, 853, 1, 1, 1811, 1, 1, 1, 1, 1, 1, 16249, 43573, 5477, 1009, 1, 44549, 1, 1, 1, 136607, 1, 3541, 4339, 15511, 1, 141107, 1, 1, 17923, 48049, 3019, 145679, 1, 1583, 1423, 2917, 1, 150323, 787, 1, 1, 1, 6427, 1, 1, 5801, 9839, 4057, 3313, 6949, 1, 53813, 1193, 1, 1, 4451, 1, 55441, 1229, 6221, 1, 2389, 1, 19031, 1, 57649, 1, 1, 2437, 3457, 1, 59333, 1, 1, 7523, 3557, 22783, 20347, 3833, 1, 1, 20731, 23431, 62773, 7883, 2677, 1, 1487, 3011, 1, 1, 195359, 1, 65713, 12377, 1, 1, 200723, 1, 1, 1, 68113, 1069, 1, 1, 5333, 26113, 69941, 2927, 12451, 1, 1, 1031, 2659, 9013, 4099, 9091, 1, 1, 3203, 1, 1627, 3109, 74933, 28219, 5813, 1, 1, 4783, 1, 1, 1987, 1, 4423, 1, 26263, 7417, 4673, 1, 240287, 1117, 3511, 1, 4789, 1, 2179, 10301, 1, 31153, 27803, 2617, 19403, 1319, 1, 1877, 85429, 1, 1, 1801, 1471, 1, 87473, 3659, 3623, 1, 3863, 1, 9949, 1, 1621, 1, 1783, 34231, 2131, 5749, 277007, 1931, 1, 35023, 1, 1307, 1129, 2963, 7321, 2239, 31963, 1, 12601, 1, 32443, 1409, 3163, 6151, 1, 1, 1, 1, 1699, 1, 302927, 3167, 2749, 38281, 1, 12853, 18211, 6473, 11549, 19559, 8053, 1, 1, 4409, 1, 1, 106949, 1, 323123, 1, 3499, 40819, 1, 1, 329999, 6899, 36923, 1, 1571, 1, 25919, 1, 113093, 10639, 4951, 1, 26459, 1, 1723, 1, 1, 1, 351059, 1, 1, 1, 6977, 3719, 358223, 1, 120209, 1459, 121013, 5059, 11789, 7639, 9433, 1, 1789, 1, 8669, 15583, 1, 1, 1879, 3947, 380147, 5297, 127541, 3691, 1, 2683, 1, 8101, 7649, 1, 1, 16411, 1, 4129, 1, 1, 1, 1, 1567, 1, 135089, 25409, 10457, 1, 410387, 1, 137653, 1, 46171, 1, 1, 1, 46747, 1, 1933, 1361, 425939, 1, 6211, 1, 143729, 6007, 1, 18131, 1993, 13681, 1, 1, 1999, 1, 1, 1, 1447, 9343, 449807, 1, 150833, 56731, 151733, 1, 1, 1, 2897, 14437, 1, 1, 466079, 19477, 4007, 29387, 157189, 1, 1433, 6607, 1, 59809, 1, 1, 15569, 2521, 1, 1, 3191, 1, 1, 10259, 1483, 2381, 165553, 20753, 1, 1, 167441, 1, 12953, 1759, 508019, 21227, 170293, 3767, 4391, 10733, 516623, 1, 1, 65119, 1, 1, 525299, 1, 10357, 2069, 5711, 1, 534047, 1, 10529, 1, 19997, 11279, 41759, 1, 60647, 1, 182929, 1, 42443, 1, 184913, 3023, 1, 1, 8369, 1, 187909, 35327, 62971, 23677, 569759, 1831, 2053, 1, 1, 1, 2003, 2687, 1, 72931, 1, 4073, 34591, 1, 1, 3221, 1, 1, 1, 3119, 1, 1, 5437, 1, 1, 8447, 203249, 2939, 4751, 1, 1, 25733, 1, 2503, 1, 1, 20177, 1, 3037, 78781, 1, 26393, 8699, 4421, 1, 39989, 12577, 1, 12163, 26927, 215953, 1, 1, 1, 654323, 1, 73063, 1, 1, 1, 2221, 1, 1, 4919, 7211, 9337, 51839, 1, 225733, 10607, 75611, 1, 683807, 1, 1, 43049, 230149, 14419, 693779, 1, 13669, 1, 233489, 1, 1, 7349, 18133, 88609, 26317, 1, 713939, 1, 6131, 44939, 1, 1, 19571, 1, 7823, 1753, 1, 1, 1, 30671, 245941, 1, 3581, 1, 1, 15551, 1, 93739, 19273, 31391, 1, 1, 252869, 23761, 19541, 1, 7433, 31973, 256369, 48179, 85847, 1, 25037, 32413, 1, 1, 11351, 1, 8111, 1, 2011, 99013, 4993, 1, 61343, 16651, 1949, 50177, 1, 33601, 62171, 33751, 90203, 12713, 1, 8513, 3187, 1, 11923, 4481, 5197, 1, 829967, 1, 1, 6143, 3001, 34963, 1, 8779, 7219, 1, 282769, 35423, 23027, 1, 1, 53597, 286469, 5981, 863123, 1, 1, 8353, 96731, 1, 20333, 9127, 1913, 8461, 293941, 36821, 5119, 6163, 1, 1, 22901, 1, 896927, 2203, 2657, 1, 1, 4721, 1, 1, 2357, 114259,

6. Sequence of the polynom (only primes)

13, 3, 59, 37, 17, 23, 43, 251, 877, 331, 131, 367, 1201, 431, 167, 1453, 31, 97, 67, 71, 53, 571, 1741, 73, 587, 197, 1777, 113, 241, 103, 151, 1823, 137, 773, 2579, 373, 347, 3407, 173, 5279, 227, 1873, 181, 6323, 271, 743, 859, 2609, 2741, 8627, 1051, 9887, 421, 659, 229, 863, 1489, 4049, 971, 257, 1669, 1511, 577, 613, 541, 929, 641, 15647, 5393, 5573, 557, 457, 389, 18959, 401, 6709, 7109, 1327, 953, 2647, 503, 569, 1033, 2791, 3181, 661, 499, 9041, 3433, 28499, 601, 9733, 1847, 3323, 1291, 991, 887, 461, 4243, 673, 2699, 739, 11953, 1543, 2879, 13009, 39839, 13553, 13829, 42323, 14389, 5449, 463, 44879, 15541, 47507, 16433, 691, 50207, 2111, 17041, 5783, 547, 1709, 1997, 523, 18289, 1153, 55823, 823, 7159, 1481, 809, 617, 941, 2551, 3631, 2593, 6971, 907, 593, 8293, 719, 2953, 22993, 8689, 5471, 1493, 4547, 25169, 2377, 25541, 77747, 26293, 9931, 3529, 3049, 1637, 84659, 29009, 1217, 88223, 3701, 2293, 1901, 947, 3853, 10343, 1367, 937, 32693, 99347, 2083, 1973, 6329, 4273, 3329, 4327, 683, 2713, 1109, 107123, 977, 111119, 37489, 14143, 12647, 1439, 39313, 4943, 1667, 40241, 7589, 40709, 853, 1811, 16249, 43573, 5477, 1009, 44549, 136607, 3541, 4339, 15511, 141107, 17923, 48049, 3019, 145679, 1583, 1423, 2917, 150323, 787, 6427, 5801, 9839, 4057, 3313, 6949, 53813, 1193, 4451, 55441, 1229, 6221, 2389, 19031, 57649, 2437, 3457, 59333, 7523, 3557, 22783, 20347, 3833, 20731, 23431, 62773, 7883, 2677, 1487, 3011, 195359, 65713, 12377, 200723, 68113, 1069, 5333, 26113, 69941, 2927, 12451, 1031, 2659, 9013, 4099, 9091, 3203, 1627, 3109, 74933, 28219, 5813, 4783, 1987, 4423, 26263, 7417, 4673, 240287, 1117, 3511, 4789, 2179, 10301, 31153, 27803, 2617, 19403, 1319, 1877, 85429, 1801, 1471, 87473, 3659, 3623, 3863, 9949, 1621, 1783, 34231, 2131, 5749, 277007, 1931, 35023, 1307, 1129, 2963, 7321, 2239, 31963, 12601, 32443, 1409, 3163, 6151, 1699, 302927, 3167, 2749, 38281, 12853, 18211, 6473, 11549, 19559, 8053, 4409, 106949, 323123, 3499, 40819, 329999, 6899, 36923, 1571, 25919, 113093, 10639, 4951, 26459, 1723, 351059, 6977, 3719, 358223, 120209, 1459, 121013, 5059, 11789, 7639, 9433, 1789, 8669, 15583, 1879, 3947, 380147, 5297, 127541, 3691, 2683, 8101, 7649, 16411, 4129, 1567, 135089, 25409, 10457, 410387, 137653, 46171, 46747, 1933, 1361, 425939, 6211, 143729, 6007, 18131, 1993, 13681, 1999, 1447, 9343, 449807, 150833, 56731, 151733, 2897, 14437, 466079, 19477, 4007, 29387, 157189, 1433, 6607, 59809, 15569, 2521, 3191, 10259, 1483, 2381, 165553, 20753, 167441, 12953, 1759, 508019, 21227, 170293, 3767, 4391, 10733, 516623, 65119, 525299, 10357, 2069, 5711, 534047, 10529, 19997, 11279, 41759, 60647, 182929, 42443, 184913, 3023, 8369, 187909, 35327, 62971, 23677, 569759, 1831, 2053, 2003, 2687, 72931, 4073, 34591, 3221, 3119, 5437, 8447, 203249, 2939, 4751, 25733, 2503, 20177, 3037, 78781, 26393, 8699, 4421, 39989, 12577, 12163, 26927, 215953, 654323, 73063, 2221, 4919, 7211, 9337, 51839, 225733, 10607, 75611, 683807, 43049, 230149, 14419, 693779, 13669, 233489, 7349, 18133, 88609, 26317, 713939, 6131, 44939, 19571, 7823, 1753, 30671, 245941, 3581, 15551, 93739, 19273, 31391, 252869, 23761, 19541, 7433, 31973, 256369, 48179, 85847, 25037, 32413, 11351, 8111, 2011, 99013, 4993, 61343, 16651, 1949, 50177, 33601, 62171, 33751, 90203, 12713, 8513, 3187, 11923, 4481, 5197, 829967, 6143, 3001, 34963, 8779, 7219, 282769, 35423, 23027, 53597, 286469, 5981, 863123, 8353, 96731, 20333, 9127, 1913, 8461, 293941, 36821, 5119, 6163, 22901, 896927, 2203, 2657, 4721, 2357, 114259,

7. Distribution of the primes

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

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)
1108350.8000000.3000000.5000000.0000000.0000000.000000
21002511140.2500000.1100000.1400003.1250003.6666672.800000
31.0005331284050.5330000.1280000.40500021.32000011.63636428.928572
410.0006.1149765.1380.6114000.0976000.51380011.4709207.62500012.686419
5100.00063.3647.28356.0810.6336400.0728300.56081010.3637557.46209010.914948
61.000.000644.70758.832585.8750.6447070.0588320.58587510.1746588.07799010.446943
710.000.0006.519.100493.6166.025.4840.6519100.0493620.60254810.1117258.39026410.284590
8100.000.00065.725.3294.239.10661.486.2230.6572530.0423910.61486210.0819648.58786210.204363
91.000.000.000661.324.12337.194.015624.130.1080.6613240.0371940.62413010.0619368.77402410.150731
1010.000.000.0006.645.707.350331.372.1336.314.335.2170.6645710.0331370.63143410.0490938.90928610.117018


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
244221.0000000.5000000.5000001.3333331.0000002.000000
386240.7500000.2500000.5000001.5000001.0000002.000000
41612570.7500000.3125000.4375002.0000002.5000001.750000
532199100.5937500.2812500.3125001.5833331.8000001.428571
6642411130.3750000.1718750.2031251.2631581.2222221.300000
71283316170.2578120.1250000.1328121.3750001.4545451.307692
825610035650.3906250.1367190.2539063.0303032.1875003.823529
9512243701730.4746090.1367190.3378912.4300002.0000002.661538
101.0245451304150.5322270.1269530.4052732.2427981.8571432.398844
112.0481.1652519140.5688480.1225590.4462892.1376151.9307692.202410
124.0962.4244391.9850.5917970.1071780.4846192.0806871.7490042.171772
138.1924.9828194.1630.6081540.0999760.5081792.0552801.8656042.097229
1416.38410.1251.5028.6230.6179810.0916750.5263062.0323161.8339442.071343
1532.76820.4882.72317.7650.6252440.0830990.5421452.0235061.8129162.060188
1665.53641.3355.00236.3330.6307220.0763240.5543982.0175221.8369452.045201
17131.07283.2609.23074.0300.6352230.0704190.5648042.0142741.8452622.037542
18262.144167.54317.284150.2590.6391260.0659330.5731932.0122871.8725892.029704
19524.288336.59432.586304.0080.6420020.0621530.5798492.0090011.8853272.023226
201.048.576676.11761.420614.6970.6447950.0585750.5862212.0087021.8848582.021976
212.097.1521.357.680115.9611.241.7190.6473920.0552950.5920982.0080551.8880012.020051
224.194.3042.724.355220.5022.503.8530.6495370.0525720.5969652.0066251.9015192.016441
238.388.6085.464.454419.4205.045.0340.6514140.0499990.6014152.0057791.9021142.014908
2416.777.21610.959.519798.65110.160.8680.6532380.0476030.6056352.0056021.9041802.014034
2533.554.43221.974.8841.523.76220.451.1220.6549030.0454120.6094912.0050961.9079202.012734
2667.108.86444.052.5422.915.06641.137.4760.6564340.0434380.6129962.0046771.9130722.011502
27134.217.72888.292.5205.589.11782.703.4030.6578310.0416420.6161882.0042551.9173212.010415
28268.435.456176.931.14410.734.505166.196.6390.6591200.0399890.6191312.0039201.9206082.009550
29536.870.912354.505.91420.653.094333.852.8200.6603190.0384690.6218492.0036381.9239912.008782
301.073.741.824710.212.18939.785.026670.427.1630.6614370.0370530.6243842.0033861.9263472.008152
312.147.483.6481.422.670.85076.752.8951.345.917.9550.6624830.0357410.6267422.0031631.9291912.007553
324.294.967.2962.849.543.760148.252.5652.701.291.1950.6634610.0345180.6289432.0029541.9315572.007025
338.589.934.5925.706.958.081286.712.5895.420.245.4920.6643770.0333780.6310002.0027621.9339472.006539
3417.179.869.18411.428.686.192555.117.92710.873.568.2650.6652370.0323120.6329252.0025881.9361482.006103


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
242100110
382100110
4165310320
5329622331
66411823341
712816963454
8256351717711710
951270294013241023
101.024130517824441646
112.0482519016035893097
124.0964391612776115262164
138.192819297521109302107301
1416.3841.502536965207540205550
1532.7682.7239921.730370976385992
1665.5365.0021.7883.2136661.8136831.840
17131.0729.2303.2655.9641.2313.3501.2623.387
18262.14417.2846.06811.2152.3026.3122.3206.350
19524.28832.58611.44121.1444.34711.9464.31011.983
201.048.57661.42021.49739.9228.14222.5538.13522.590
212.097.152115.96140.43075.53015.27542.59815.30742.781
224.194.304220.50276.755143.74628.89581.19829.13681.273
238.388.608419.420145.549273.87054.825154.65455.238154.703
2416.777.216798.651276.635522.015104.247294.396104.769295.239
2533.554.4321.523.762526.523997.238198.898562.365199.138563.361
2667.108.8642.915.0661.005.2511.909.814379.6871.077.853379.9151.077.611
27134.217.7285.589.1171.925.5593.663.557727.1702.067.408727.3802.067.159
28268.435.45610.734.5053.694.5277.039.9771.395.6333.973.3581.394.5913.970.923
29536.870.91220.653.0947.101.05913.552.0342.681.4647.647.1382.679.6577.644.835
301.073.741.82439.785.02613.664.45026.120.5755.158.58614.735.9775.156.11514.734.348
312.147.483.64876.752.89526.331.34750.421.5479.935.54128.440.9039.934.42928.442.022
324.294.967.296148.252.56550.814.86297.437.70219.171.09254.953.66419.167.44554.960.364
338.589.934.592286.712.58998.176.879188.535.70937.032.362106.320.68737.027.897106.331.643
3417.179.869.184555.117.927189.935.243365.182.68371.626.207205.922.89471.612.822205.956.004


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
121010100
242110110
384131111
4167341312
53210461414
66413581624
7128177103734
825665303519141715
9512173848954325235
101.0244152022131069312294
112.048914464450245198271200
124.0961.985993992509457579440
138.1924.1632.0742.0891.1199481.152944
1416.3848.6234.2314.3922.3061.9972.3351.985
1532.76817.7658.7599.0064.6884.1764.7654.136
1665.53636.33318.04818.2859.5898.4889.7108.546
17131.07274.03037.04736.98319.50217.32119.81817.389
18262.144150.25975.12875.13139.47135.34839.86235.578
19524.288304.008151.659152.34979.58172.10680.26072.061
201.048.576614.697306.047308.650160.535146.389161.259146.514
212.097.1521.241.719619.127622.592323.969296.688324.397296.665
224.194.3042.503.8531.249.3151.254.538652.428599.717652.385599.323
238.388.6085.045.0342.517.5972.527.4371.312.2781.210.3341.312.3131.210.109
2416.777.21610.160.8685.069.9295.090.9392.637.7142.442.8042.637.6272.442.723
2533.554.43220.451.12210.206.45810.244.6645.297.6754.925.9465.299.4804.928.021
2667.108.86441.137.47620.530.54720.606.92910.642.6449.927.96610.644.3929.922.474
27134.217.72882.703.40341.280.73441.422.66921.364.32719.990.58321.365.82419.982.669
28268.435.456166.196.63982.963.64183.232.99842.872.26040.230.88142.876.75940.216.739
29536.870.912333.852.820166.677.781167.175.03986.019.58980.915.95085.999.09280.918.189
301.073.741.824670.427.163334.748.380335.678.783172.529.560162.695.933172.509.853162.691.817
312.147.483.6481.345.917.955672.038.669673.879.286345.965.366327.014.056345.946.234326.992.299
324.294.967.2962.701.291.1951.348.840.8231.352.450.372693.633.610657.031.347693.617.329657.008.909
338.589.934.5925.420.245.4922.706.644.9322.713.600.5601.390.455.0301.319.633.7251.390.531.8641.319.624.873
3417.179.869.18410.873.568.2655.430.059.1995.443.509.0662.786.968.8092.649.754.2542.787.071.4592.649.773.743


8. Check for existing Integer Sequences by OEIS

Found in Database : 13, 3, 59, 1, 37, 17, 1, 23, 1, 43, 251, 1, 877, 1, 331, 131, 367, 1, 1201, 1,
Found in Database : 13, 3, 59, 37, 17, 23, 43, 251, 877, 331, 131, 367, 1201, 431, 167, 1453, 31, 97, 67, 71, 53, 571, 1741, 73, 587,
Found in Database : 3, 13, 17, 23, 31, 37, 43, 53, 59, 67, 71, 73, 97, 103, 113, 131, 137,