Inhaltsverzeichnis

Development of
Algorithmic Constructions

15:34:37
Deutsch
20.Apr 2024

Polynom = x^2+19x-7

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) = 7 = 7
f(1) = 13 = 13
f(2) = 35 = 5*7
f(3) = 59 = 59
f(4) = 85 = 5*17
f(5) = 113 = 113
f(6) = 143 = 11*13
f(7) = 175 = 5*5*7
f(8) = 209 = 11*19
f(9) = 245 = 5*7*7
f(10) = 283 = 283
f(11) = 323 = 17*19
f(12) = 365 = 5*73
f(13) = 409 = 409
f(14) = 455 = 5*7*13
f(15) = 503 = 503
f(16) = 553 = 7*79
f(17) = 605 = 5*11*11
f(18) = 659 = 659
f(19) = 715 = 5*11*13
f(20) = 773 = 773
f(21) = 833 = 7*7*17
f(22) = 895 = 5*179
f(23) = 959 = 7*137
f(24) = 1025 = 5*5*41
f(25) = 1093 = 1093
f(26) = 1163 = 1163
f(27) = 1235 = 5*13*19
f(28) = 1309 = 7*11*17
f(29) = 1385 = 5*277
f(30) = 1463 = 7*11*19
f(31) = 1543 = 1543
f(32) = 1625 = 5*5*5*13
f(33) = 1709 = 1709
f(34) = 1795 = 5*359
f(35) = 1883 = 7*269
f(36) = 1973 = 1973
f(37) = 2065 = 5*7*59
f(38) = 2159 = 17*127
f(39) = 2255 = 5*11*41
f(40) = 2353 = 13*181
f(41) = 2453 = 11*223
f(42) = 2555 = 5*7*73
f(43) = 2659 = 2659
f(44) = 2765 = 5*7*79
f(45) = 2873 = 13*13*17
f(46) = 2983 = 19*157
f(47) = 3095 = 5*619
f(48) = 3209 = 3209
f(49) = 3325 = 5*5*7*19
f(50) = 3443 = 11*313
f(51) = 3563 = 7*509
f(52) = 3685 = 5*11*67
f(53) = 3809 = 13*293
f(54) = 3935 = 5*787
f(55) = 4063 = 17*239
f(56) = 4193 = 7*599
f(57) = 4325 = 5*5*173
f(58) = 4459 = 7*7*7*13
f(59) = 4595 = 5*919
f(60) = 4733 = 4733
f(61) = 4873 = 11*443
f(62) = 5015 = 5*17*59
f(63) = 5159 = 7*11*67
f(64) = 5305 = 5*1061
f(65) = 5453 = 7*19*41
f(66) = 5603 = 13*431
f(67) = 5755 = 5*1151
f(68) = 5909 = 19*311
f(69) = 6065 = 5*1213
f(70) = 6223 = 7*7*127
f(71) = 6383 = 13*491
f(72) = 6545 = 5*7*11*17
f(73) = 6709 = 6709
f(74) = 6875 = 5*5*5*5*11
f(75) = 7043 = 7043
f(76) = 7213 = 7213
f(77) = 7385 = 5*7*211
f(78) = 7559 = 7559
f(79) = 7735 = 5*7*13*17
f(80) = 7913 = 41*193
f(81) = 8093 = 8093
f(82) = 8275 = 5*5*331
f(83) = 8459 = 11*769
f(84) = 8645 = 5*7*13*19
f(85) = 8833 = 11*11*73
f(86) = 9023 = 7*1289
f(87) = 9215 = 5*19*97
f(88) = 9409 = 97*97
f(89) = 9605 = 5*17*113
f(90) = 9803 = 9803
f(91) = 10003 = 7*1429
f(92) = 10205 = 5*13*157
f(93) = 10409 = 7*1487
f(94) = 10615 = 5*11*193
f(95) = 10823 = 79*137
f(96) = 11033 = 11*17*59
f(97) = 11245 = 5*13*173
f(98) = 11459 = 7*1637
f(99) = 11675 = 5*5*467
f(100) = 11893 = 7*1699

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+19x-7

f(0)=7
f(1)=13
f(2)=5
f(3)=59
f(4)=17
f(5)=113
f(6)=11
f(7)=1
f(8)=19
f(9)=1
f(10)=283
f(11)=1
f(12)=73
f(13)=409
f(14)=1
f(15)=503
f(16)=79
f(17)=1
f(18)=659
f(19)=1
f(20)=773
f(21)=1
f(22)=179
f(23)=137
f(24)=41
f(25)=1093
f(26)=1163
f(27)=1
f(28)=1
f(29)=277
f(30)=1
f(31)=1543
f(32)=1
f(33)=1709
f(34)=359
f(35)=269
f(36)=1973
f(37)=1
f(38)=127
f(39)=1
f(40)=181
f(41)=223
f(42)=1
f(43)=2659
f(44)=1
f(45)=1
f(46)=157
f(47)=619
f(48)=3209
f(49)=1
f(50)=313
f(51)=509
f(52)=67
f(53)=293
f(54)=787
f(55)=239
f(56)=599
f(57)=173
f(58)=1
f(59)=919
f(60)=4733
f(61)=443
f(62)=1
f(63)=1
f(64)=1061
f(65)=1
f(66)=431
f(67)=1151
f(68)=311
f(69)=1213
f(70)=1
f(71)=491
f(72)=1
f(73)=6709
f(74)=1
f(75)=7043
f(76)=7213
f(77)=211
f(78)=7559
f(79)=1
f(80)=193
f(81)=8093
f(82)=331
f(83)=769
f(84)=1
f(85)=1
f(86)=1289
f(87)=97
f(88)=1
f(89)=1
f(90)=9803
f(91)=1429
f(92)=1
f(93)=1487
f(94)=1
f(95)=1
f(96)=1
f(97)=1
f(98)=1637
f(99)=467

b) Substitution of the polynom
The polynom f(x)=x^2+19x-7 could be written as f(y)= y^2-97.25 with x=y-9.5

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+9.5
f'(x)>2x+18

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

7, 13, 5, 59, 17, 113, 11, 1, 19, 1, 283, 1, 73, 409, 1, 503, 79, 1, 659, 1, 773, 1, 179, 137, 41, 1093, 1163, 1, 1, 277, 1, 1543, 1, 1709, 359, 269, 1973, 1, 127, 1, 181, 223, 1, 2659, 1, 1, 157, 619, 3209, 1, 313, 509, 67, 293, 787, 239, 599, 173, 1, 919, 4733, 443, 1, 1, 1061, 1, 431, 1151, 311, 1213, 1, 491, 1, 6709, 1, 7043, 7213, 211, 7559, 1, 193, 8093, 331, 769, 1, 1, 1289, 97, 1, 1, 9803, 1429, 1, 1487, 1, 1, 1, 1, 1637, 467, 1699, 12113, 2467, 661, 2557, 1, 1, 1, 13709, 2789, 1091, 14423, 419, 877, 433, 1, 1423, 3181, 1, 1, 16673, 1, 1, 1, 709, 947, 2609, 337, 2687, 347, 1, 1511, 797, 2887, 4099, 2969, 1621, 4273, 1, 4391, 1, 1187, 653, 23159, 1, 23773, 24083, 1, 24709, 1, 25343, 2333, 5197, 26309, 761, 457, 557, 1, 383, 5659, 1, 4139, 1, 1, 353, 1, 30703, 6211, 641, 6353, 1, 2953, 6569, 3019, 1, 373, 34313, 991, 35059, 1, 607, 2129, 1, 2843, 1, 389, 569, 7703, 1, 1123, 39703, 1, 8101, 3719, 8263, 3793, 463, 1, 1, 1, 43793, 1, 1, 1, 827, 937, 1, 1871, 2777, 733, 6869, 48523, 1399, 49409, 1, 1, 50753, 1, 51659, 1489, 2767, 1, 823, 53959, 1, 3229, 719, 859, 5119, 1, 1, 1, 1, 8387, 11839, 4591, 3167, 1103, 8737, 1, 683, 62653, 743, 63659, 1, 9239, 65183, 1877, 1, 1, 6113, 67763, 1951, 1, 1, 3677, 70393, 2837, 3761, 1, 72533, 1, 14723, 74159, 1, 75253, 1, 15271, 10987, 15493, 1, 78583, 1439, 1, 1, 11549, 4789, 863, 82559, 1279, 11959, 1, 1, 1, 17209, 2113, 87223, 1, 1, 2543, 89603, 90203, 1, 1, 1, 92623, 701, 1, 1601, 3803, 1, 13759, 19387, 1, 1, 691, 1, 4003, 14387, 20269, 857, 2503, 1087, 7993, 1901, 1, 9623, 1, 8243, 21563, 1619, 109133, 3137, 110459, 1, 10163, 1, 1, 113809, 3271, 115163, 1, 1, 117209, 1, 118583, 1549, 23993, 1567, 1867, 122053, 122753, 24691, 17737, 1, 17939, 1, 2309, 127709, 1, 971, 7639, 1, 6911, 26407, 132763, 133493, 1, 12269, 3877, 1, 8069, 27583, 1, 1, 10781, 20129, 1, 8377, 1, 11071, 1879, 1531, 20887, 5879, 147743, 148513, 1, 1, 1, 1, 152393, 1, 911, 30949, 1307, 1, 1, 8311, 31741, 159503, 1, 4603, 1, 4649, 9619, 12641, 33029, 2477, 953, 167593, 1, 1, 983, 1, 171713, 1, 1, 1, 2693, 9257, 2237, 2089, 1, 35851, 2339, 3067, 2797, 182659, 1, 26339, 185233, 1, 186959, 1, 188693, 907, 5441, 1693, 1, 14851, 193943, 7793, 195709, 1, 1381, 1667, 3623, 200159, 1, 201953, 28979, 40751, 1, 41113, 10867, 1109, 41659, 1, 1, 1, 1669, 42577, 12577, 1, 30809, 16661, 1, 218459, 3989, 220333, 17021, 1, 13127, 1, 3359, 1171, 2389, 20719, 1, 1229, 32969, 46349, 232709, 1, 1, 1, 47317, 33937, 4337, 1, 21863, 1, 1823, 1, 34919, 12917, 1, 247409, 49681, 1, 250403, 1, 252409, 50683, 19571, 1427, 1, 257459, 1, 19961, 2153, 2753, 23869, 1, 1, 1, 10667, 20593, 1, 269783, 5527, 4943, 2999, 1, 275003, 6733, 1, 1, 55843, 40039, 1, 56479, 1, 1, 3709, 22051, 8221, 1, 57977, 290963, 1, 1, 1231, 1, 1, 27043, 1, 17627, 1, 15887, 1, 60811, 16061, 61253, 27943, 1, 1, 1, 12473, 312943, 314063, 1, 1, 63487, 2677, 29063, 1, 29269, 1, 1, 1, 1, 2087, 65761, 1493, 1, 1, 5651, 1, 2971, 2459, 1, 1, 1, 341543, 1, 68777, 1, 69247, 31583, 2621, 1, 1, 70429, 353333, 27271, 71143, 1, 1, 51329, 2521, 72341, 6151, 72823, 52189, 5021, 1, 8999, 1, 1777, 372613, 1, 375059, 1, 377513, 22279, 15199, 381209, 1, 383683, 4999, 1, 1, 77731, 389903, 1, 6037, 56237, 4157, 396173, 397433, 1, 3361, 1459, 4423, 5531, 1373, 406309, 81517, 4493, 410143, 2351, 2207, 82799, 1987, 416573, 11939, 1697, 1, 24809, 423053, 84871, 1, 1, 428273, 1, 86179, 5471, 17341, 25579, 4793, 1483, 62687, 1, 1, 34061, 1, 9091, 1, 64019, 449473, 90163, 452159, 6977, 1, 1, 1, 41719, 1, 4759, 462983, 13267, 1, 1, 2617, 1, 1, 472559, 1, 11593, 68099, 1471, 4243, 5657, 482233, 1, 97003, 6317, 97561, 1, 28859, 5179, 70487, 98963, 1, 497633, 99809, 500459, 1, 71899, 2699, 14461, 39043, 101797, 4019, 511843, 1, 1, 14747, 1, 1, 9463, 1, 1, 524803, 5783, 105541, 1831, 106123, 3389, 1, 1597, 6967, 21517, 31729, 540863, 1, 77687, 8389, 4111, 548243, 1999, 1, 1, 4657, 13553, 15919, 3121, 112031, 1, 563153, 1, 4679, 1, 1, 570683, 8803, 2719, 1, 576743, 82609, 1, 2161, 10597, 1, 1, 23497, 84137, 6947, 45541, 593573, 2903, 85237, 1, 7789, 6199, 1, 2447, 7129, 1, 32057, 1, 47093, 24551, 615343, 3299, 1, 56369, 17761, 4549, 3697, 5011, 2267, 17987, 631133, 1, 1, 635909, 1, 33637, 91529, 128461, 1, 9931, 1, 5741, 130069, 8467, 2011, 1, 1949, 131687, 1, 2243, 13537, 1, 1, 668209, 1, 39499, 5563, 1, 676409, 19373, 9311, 1, 136601, 16699, 19609, 1, 98519, 12569, 1997, 5557, 2819, 99709, 8231, 5273, 2383, 704663, 1, 1, 1, 1801, 101869, 714773, 8429, 55243, 143971, 103079, 1, 1, 726659, 1, 1, 1, 1, 735209, 4211, 738643, 56951, 1, 67619, 1, 67933, 1, 30029, 752459, 1, 2729, 6367, 151883, 1, 1, 2269, 1, 2293, 109987, 154333, 1, 45599, 11953, 778709, 31219, 10159, 2221, 1, 46327, 157867, 7001, 792893, 1, 796459, 22807, 1, 72893, 160723, 1, 23063, 4787, 16547, 1, 2347, 163243, 48119, 117119, 14939, 9049, 3001, 20173, 43627, 166147, 1, 8783, 7027, 838043, 6719, 76519, 1, 10979, 65171, 1, 10771, 170551, 1, 65881, 1, 11783, 2239, 2393, 1, 1, 1, 1, 2341, 3049, 1, 2039, 1, 80233, 126349, 1, 1, 2657, 891983, 893873, 13781, 128237, 1, 18397, 2003, 1, 82469, 181813, 1, 53699, 1, 1, 7349, 1, 922463, 1, 926309, 2411, 71551, 54829, 37361, 49261, 1, 9689, 1, 1, 1, 2399, 86323, 135929, 4651, 10499, 191473, 959323, 961283, 1, 8111, 3517, 138449, 6791, 10243, 1, 195407, 1, 1, 1, 984959, 197389, 1, 990923, 2579, 6337, 1, 1, 13711, 2539, 8893, 2213, 1008923, 1, 1, 92269, 2141,

6. Sequence of the polynom (only primes)

7, 13, 5, 59, 17, 113, 11, 19, 283, 73, 409, 503, 79, 659, 773, 179, 137, 41, 1093, 1163, 277, 1543, 1709, 359, 269, 1973, 127, 181, 223, 2659, 157, 619, 3209, 313, 509, 67, 293, 787, 239, 599, 173, 919, 4733, 443, 1061, 431, 1151, 311, 1213, 491, 6709, 7043, 7213, 211, 7559, 193, 8093, 331, 769, 1289, 97, 9803, 1429, 1487, 1637, 467, 1699, 12113, 2467, 661, 2557, 13709, 2789, 1091, 14423, 419, 877, 433, 1423, 3181, 16673, 709, 947, 2609, 337, 2687, 347, 1511, 797, 2887, 4099, 2969, 1621, 4273, 4391, 1187, 653, 23159, 23773, 24083, 24709, 25343, 2333, 5197, 26309, 761, 457, 557, 383, 5659, 4139, 353, 30703, 6211, 641, 6353, 2953, 6569, 3019, 373, 34313, 991, 35059, 607, 2129, 2843, 389, 569, 7703, 1123, 39703, 8101, 3719, 8263, 3793, 463, 43793, 827, 937, 1871, 2777, 733, 6869, 48523, 1399, 49409, 50753, 51659, 1489, 2767, 823, 53959, 3229, 719, 859, 5119, 8387, 11839, 4591, 3167, 1103, 8737, 683, 62653, 743, 63659, 9239, 65183, 1877, 6113, 67763, 1951, 3677, 70393, 2837, 3761, 72533, 14723, 74159, 75253, 15271, 10987, 15493, 78583, 1439, 11549, 4789, 863, 82559, 1279, 11959, 17209, 2113, 87223, 2543, 89603, 90203, 92623, 701, 1601, 3803, 13759, 19387, 691, 4003, 14387, 20269, 857, 2503, 1087, 7993, 1901, 9623, 8243, 21563, 1619, 109133, 3137, 110459, 10163, 113809, 3271, 115163, 117209, 118583, 1549, 23993, 1567, 1867, 122053, 122753, 24691, 17737, 17939, 2309, 127709, 971, 7639, 6911, 26407, 132763, 133493, 12269, 3877, 8069, 27583, 10781, 20129, 8377, 11071, 1879, 1531, 20887, 5879, 147743, 148513, 152393, 911, 30949, 1307, 8311, 31741, 159503, 4603, 4649, 9619, 12641, 33029, 2477, 953, 167593, 983, 171713, 2693, 9257, 2237, 2089, 35851, 2339, 3067, 2797, 182659, 26339, 185233, 186959, 188693, 907, 5441, 1693, 14851, 193943, 7793, 195709, 1381, 1667, 3623, 200159, 201953, 28979, 40751, 41113, 10867, 1109, 41659, 1669, 42577, 12577, 30809, 16661, 218459, 3989, 220333, 17021, 13127, 3359, 1171, 2389, 20719, 1229, 32969, 46349, 232709, 47317, 33937, 4337, 21863, 1823, 34919, 12917, 247409, 49681, 250403, 252409, 50683, 19571, 1427, 257459, 19961, 2153, 2753, 23869, 10667, 20593, 269783, 5527, 4943, 2999, 275003, 6733, 55843, 40039, 56479, 3709, 22051, 8221, 57977, 290963, 1231, 27043, 17627, 15887, 60811, 16061, 61253, 27943, 12473, 312943, 314063, 63487, 2677, 29063, 29269, 2087, 65761, 1493, 5651, 2971, 2459, 341543, 68777, 69247, 31583, 2621, 70429, 353333, 27271, 71143, 51329, 2521, 72341, 6151, 72823, 52189, 5021, 8999, 1777, 372613, 375059, 377513, 22279, 15199, 381209, 383683, 4999, 77731, 389903, 6037, 56237, 4157, 396173, 397433, 3361, 1459, 4423, 5531, 1373, 406309, 81517, 4493, 410143, 2351, 2207, 82799, 1987, 416573, 11939, 1697, 24809, 423053, 84871, 428273, 86179, 5471, 17341, 25579, 4793, 1483, 62687, 34061, 9091, 64019, 449473, 90163, 452159, 6977, 41719, 4759, 462983, 13267, 2617, 472559, 11593, 68099, 1471, 4243, 5657, 482233, 97003, 6317, 97561, 28859, 5179, 70487, 98963, 497633, 99809, 500459, 71899, 2699, 14461, 39043, 101797, 4019, 511843, 14747, 9463, 524803, 5783, 105541, 1831, 106123, 3389, 1597, 6967, 21517, 31729, 540863, 77687, 8389, 4111, 548243, 1999, 4657, 13553, 15919, 3121, 112031, 563153, 4679, 570683, 8803, 2719, 576743, 82609, 2161, 10597, 23497, 84137, 6947, 45541, 593573, 2903, 85237, 7789, 6199, 2447, 7129, 32057, 47093, 24551, 615343, 3299, 56369, 17761, 4549, 3697, 5011, 2267, 17987, 631133, 635909, 33637, 91529, 128461, 9931, 5741, 130069, 8467, 2011, 1949, 131687, 2243, 13537, 668209, 39499, 5563, 676409, 19373, 9311, 136601, 16699, 19609, 98519, 12569, 1997, 5557, 2819, 99709, 8231, 5273, 2383, 704663, 1801, 101869, 714773, 8429, 55243, 143971, 103079, 726659, 735209, 4211, 738643, 56951, 67619, 67933, 30029, 752459, 2729, 6367, 151883, 2269, 2293, 109987, 154333, 45599, 11953, 778709, 31219, 10159, 2221, 46327, 157867, 7001, 792893, 796459, 22807, 72893, 160723, 23063, 4787, 16547, 2347, 163243, 48119, 117119, 14939, 9049, 3001, 20173, 43627, 166147, 8783, 7027, 838043, 6719, 76519, 10979, 65171, 10771, 170551, 65881, 11783, 2239, 2393, 2341, 3049, 2039, 80233, 126349, 2657, 891983, 893873, 13781, 128237, 18397, 2003, 82469, 181813, 53699, 7349, 922463, 926309, 2411, 71551, 54829, 37361, 49261, 9689, 2399, 86323, 135929, 4651, 10499, 191473, 959323, 961283, 8111, 3517, 138449, 6791, 10243, 195407, 984959, 197389, 990923, 2579, 6337, 13711, 2539, 8893, 2213, 1008923, 92269, 2141,

7. Distribution of the primes

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

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)
1108530.8000000.5000000.3000000.0000000.0000000.000000
21006323400.6300000.2300000.4000007.8750004.60000013.333333
31.0006721505220.6720000.1500000.52200010.6666676.52173913.050000
410.0006.7871.0355.7520.6787000.1035000.57520010.0997036.90000011.019157
5100.00068.2598.07260.1870.6825900.0807200.60187010.0573167.79903410.463665
61.000.000684.38566.248618.1370.6843850.0662480.61813710.0262978.20713610.270274
710.000.0006.855.795559.9006.295.8950.6855790.0559900.62958910.0174538.45157610.185274
8100.000.00068.637.0844.856.08063.781.0040.6863710.0485610.63781010.0115438.67312010.130569
91.000.000.000687.031.87042.874.585644.157.2850.6870320.0428750.64415710.0096308.82905210.099517
1010.000.000.0006.875.742.258383.734.4606.492.007.7980.6875740.0383730.64920110.0078958.95016210.078296


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
387430.8750000.5000000.3750001.4000001.3333331.500000
41612750.7500000.4375000.3125001.7142861.7500001.666667
532201280.6250000.3750000.2500001.6666671.7142861.600000
6644217250.6562500.2656250.3906252.1000001.4166673.125000
71288227550.6406250.2109380.4296881.9523811.5882352.200000
8256170491210.6640620.1914060.4726562.0731711.8148152.200000
9512342912510.6679690.1777340.4902342.0117651.8571432.074380
101.0246911535380.6748050.1494140.5253912.0204681.6813192.143426
112.0481.3842581.1260.6757810.1259770.5498052.0028941.6862752.092937
124.0962.7704762.2940.6762700.1162110.5600592.0014451.8449612.037300
138.1925.5738694.7040.6802980.1060790.5742192.0119131.8256302.050567
1416.38411.1381.5919.5470.6798100.0971070.5827031.9985641.8308402.029549
1532.76822.2972.95719.3400.6804500.0902400.5902102.0018851.8585802.025767
1665.53644.6995.51539.1840.6820530.0841520.5979002.0047091.8650662.026060
17131.07289.58810.36679.2220.6835020.0790860.6044162.0042511.8796012.021795
18262.144179.11019.482159.6280.6832500.0743180.6089321.9992631.8794132.014945
19524.288358.57536.493322.0820.6839280.0696050.6143232.0019821.8731652.017704
201.048.576717.80569.176648.6290.6845520.0659710.6185812.0018271.8955962.013863
212.097.1521.436.399131.0441.305.3550.6849280.0624870.6224422.0010991.8943562.012483
224.194.3042.873.956249.7672.624.1890.6852050.0595490.6256552.0008061.9059782.010326
238.388.6085.751.090475.2735.275.8170.6855830.0566570.6289262.0011061.9028662.010456
2416.777.21611.505.597908.18810.597.4090.6857870.0541320.6316552.0005941.9108772.008676
2533.554.43223.018.7431.740.44621.278.2970.6860120.0518690.6341432.0006561.9163942.007877
2667.108.86446.053.0533.336.83742.716.2160.6862440.0497230.6365212.0006761.9172312.007502
27134.217.72892.136.2306.408.93185.727.2990.6864680.0477500.6387182.0006541.9206602.006903
28268.435.456184.328.65912.333.025171.995.6340.6866780.0459440.6407342.0006101.9243502.006311
29536.870.912368.761.98123.768.117344.993.8640.6868730.0442720.6426012.0005681.9271932.005829
301.073.741.824737.720.50245.869.981691.850.5210.6870560.0427200.6443362.0005331.9298962.005399
312.147.483.6481.475.811.88188.630.3541.387.181.5270.6872280.0412720.6459572.0005031.9322082.005031
324.294.967.2962.952.310.283171.423.7712.780.886.5120.6873880.0399130.6474762.0004651.9341432.004703
338.589.934.5925.905.929.015331.930.1715.573.998.8440.6875410.0386420.6488992.0004431.9363142.004396
3417.179.869.18411.814.387.494643.343.83611.171.043.6580.6876880.0374480.6502402.0004281.9381902.004135
3534.359.738.36823.633.556.3911.248.165.41622.385.390.9750.6878270.0363260.6515012.0004051.9401222.003876
3668.719.476.73647.276.196.5922.423.781.18644.852.415.4060.6879590.0352710.6526892.0003841.9418752.003647


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
122200011
243210111
384221111
4167432212
53212662433
664177103563
71282791857105
825649183110131511
951291325921222523
101.0241534710637403838
112.0482587917967676361
124.096476142334122120116118
138.192869258611227220207215
1416.3841.5915331.058396406391398
1532.7682.9571.0131.944741733750733
1665.5365.5151.8493.6661.3581.3831.3961.378
17131.07210.3663.4656.9012.5672.5972.6272.575
18262.14419.4826.54512.9374.8584.8544.8724.898
19524.28836.49312.25524.2389.0929.1349.1349.133
201.048.57669.17623.19145.98517.29717.24517.30417.330
212.097.152131.04443.77087.27432.73032.65032.76232.902
224.194.304249.76783.382166.38562.54962.46562.43562.318
238.388.608475.273158.573316.700119.097118.881118.776118.519
2416.777.216908.188302.949605.239227.655227.265226.548226.720
2533.554.4321.740.446580.5731.159.873435.719435.074434.656434.997
2667.108.8643.336.8371.112.8712.223.966834.717835.101833.102833.917
27134.217.7286.408.9312.136.7504.272.1811.603.3821.602.7171.601.0911.601.741
28268.435.45612.333.0254.110.6998.222.3263.084.8933.083.5163.083.8313.080.785
29536.870.91223.768.1177.921.87915.846.2385.943.4775.941.9225.943.3475.939.371
301.073.741.82445.869.98115.288.06230.581.91911.468.07811.467.36211.467.01811.467.523
312.147.483.64888.630.35429.540.19359.090.16122.156.45522.156.95822.156.93122.160.010
324.294.967.296171.423.77157.138.959114.284.81242.851.78542.857.36342.852.84742.861.776
338.589.934.592331.930.171110.646.105221.284.06682.972.51182.980.89982.985.13882.991.623
3417.179.869.184643.343.836214.442.472428.901.364160.832.715160.834.710160.833.007160.843.404
3534.359.738.3681.248.165.416416.063.684832.101.732312.043.210312.040.596312.035.577312.046.033
3668.719.476.7362.423.781.186807.935.3061.615.845.880605.972.040605.930.487605.921.302605.957.357


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
242021010
383121110
4165322111
5328443221
6642512134597
712855282710141813
8256121596227273136
951225111913257616469
101.024538279259112141138147
112.0481.126568558268290285283
124.0962.2941.1651.129559601573561
138.1924.7042.3912.3131.1671.2201.1391.178
1416.3849.5474.8084.7392.3782.4192.3672.383
1532.76819.3409.8029.5384.8334.7884.8584.861
1665.53639.18419.95219.2329.8059.7509.8709.759
17131.07279.22240.22638.99619.90919.72419.80519.784
18262.144159.62880.73678.89239.83639.81339.99939.980
19524.288322.082162.558159.52480.26580.47880.43980.900
201.048.576648.629327.335321.294161.745162.247162.114162.523
212.097.1521.305.355658.792646.563325.758326.723326.446326.428
224.194.3042.624.1891.324.2891.299.900655.578656.692655.326656.593
238.388.6085.275.8172.661.0782.614.7391.317.8821.319.0831.318.4211.320.431
2416.777.21610.597.4095.342.2845.255.1252.648.1372.649.1202.650.0472.650.105
2533.554.43221.278.29710.723.89010.554.4075.317.0195.319.1135.321.4775.320.688
2667.108.86442.716.21621.521.90421.194.31210.676.20410.679.41710.684.56110.676.034
27134.217.72885.727.29943.179.73542.547.56421.427.89921.437.44321.433.79321.428.164
28268.435.456171.995.63486.599.82585.395.80942.995.96643.008.07642.994.18442.997.408
29536.870.912344.993.864173.650.441171.343.42386.247.91986.257.10986.237.84886.250.988
301.073.741.824691.850.521348.137.445343.713.076172.959.775172.981.963172.949.290172.959.493
312.147.483.6481.387.181.527697.861.186689.320.341346.791.502346.815.349346.793.971346.780.705
324.294.967.2962.780.886.5121.398.680.5971.382.205.915695.244.551695.219.190695.211.679695.211.092
338.589.934.5925.573.998.8442.802.957.6512.771.041.1931.393.505.5801.393.516.0561.393.493.3891.393.483.819
3417.179.869.18411.171.043.6585.616.455.2905.554.588.3682.792.768.8912.792.767.8472.792.759.2232.792.747.697
3534.359.738.36822.385.390.97511.252.615.45911.132.775.5165.596.364.5525.596.371.1465.596.370.2385.596.285.039
3668.719.476.73644.852.415.40622.542.596.41422.309.818.99211.213.140.08811.213.199.62411.212.999.34111.213.076.353


8. Check for existing Integer Sequences by OEIS

Found in Database : 7, 13, 5, 59, 17, 113, 11, 1, 19, 1, 283, 1, 73, 409, 1, 503, 79, 1, 659, 1,
Found in Database : 7, 13, 5, 59, 17, 113, 11, 19, 283, 73, 409, 503, 79, 659, 773, 179, 137, 41, 1093, 1163, 277, 1543, 1709, 359, 269, 1973, 127,
Found in Database : 5, 7, 11, 13, 17, 19, 41, 59, 67, 73, 79, 97, 113, 127, 137,