Inhaltsverzeichnis

Development of
Algorithmic Constructions

13:17:14
Deutsch
20.Apr 2024

Polynom = x^2+49x-97

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) = 97 = 97
f(1) = 47 = 47
f(2) = 5 = 5
f(3) = 59 = 59
f(4) = 115 = 5*23
f(5) = 173 = 173
f(6) = 233 = 233
f(7) = 295 = 5*59
f(8) = 359 = 359
f(9) = 425 = 5*5*17
f(10) = 493 = 17*29
f(11) = 563 = 563
f(12) = 635 = 5*127
f(13) = 709 = 709
f(14) = 785 = 5*157
f(15) = 863 = 863
f(16) = 943 = 23*41
f(17) = 1025 = 5*5*41
f(18) = 1109 = 1109
f(19) = 1195 = 5*239
f(20) = 1283 = 1283
f(21) = 1373 = 1373
f(22) = 1465 = 5*293
f(23) = 1559 = 1559
f(24) = 1655 = 5*331
f(25) = 1753 = 1753
f(26) = 1853 = 17*109
f(27) = 1955 = 5*17*23
f(28) = 2059 = 29*71
f(29) = 2165 = 5*433
f(30) = 2273 = 2273
f(31) = 2383 = 2383
f(32) = 2495 = 5*499
f(33) = 2609 = 2609
f(34) = 2725 = 5*5*109
f(35) = 2843 = 2843
f(36) = 2963 = 2963
f(37) = 3085 = 5*617
f(38) = 3209 = 3209
f(39) = 3335 = 5*23*29
f(40) = 3463 = 3463
f(41) = 3593 = 3593
f(42) = 3725 = 5*5*149
f(43) = 3859 = 17*227
f(44) = 3995 = 5*17*47
f(45) = 4133 = 4133
f(46) = 4273 = 4273
f(47) = 4415 = 5*883
f(48) = 4559 = 47*97
f(49) = 4705 = 5*941
f(50) = 4853 = 23*211
f(51) = 5003 = 5003
f(52) = 5155 = 5*1031
f(53) = 5309 = 5309
f(54) = 5465 = 5*1093
f(55) = 5623 = 5623
f(56) = 5783 = 5783
f(57) = 5945 = 5*29*41
f(58) = 6109 = 41*149
f(59) = 6275 = 5*5*251
f(60) = 6443 = 17*379
f(61) = 6613 = 17*389
f(62) = 6785 = 5*23*59
f(63) = 6959 = 6959
f(64) = 7135 = 5*1427
f(65) = 7313 = 71*103
f(66) = 7493 = 59*127
f(67) = 7675 = 5*5*307
f(68) = 7859 = 29*271
f(69) = 8045 = 5*1609
f(70) = 8233 = 8233
f(71) = 8423 = 8423
f(72) = 8615 = 5*1723
f(73) = 8809 = 23*383
f(74) = 9005 = 5*1801
f(75) = 9203 = 9203
f(76) = 9403 = 9403
f(77) = 9605 = 5*17*113
f(78) = 9809 = 17*577
f(79) = 10015 = 5*2003
f(80) = 10223 = 10223
f(81) = 10433 = 10433
f(82) = 10645 = 5*2129
f(83) = 10859 = 10859
f(84) = 11075 = 5*5*443
f(85) = 11293 = 23*491
f(86) = 11513 = 29*397
f(87) = 11735 = 5*2347
f(88) = 11959 = 11959
f(89) = 12185 = 5*2437
f(90) = 12413 = 12413
f(91) = 12643 = 47*269
f(92) = 12875 = 5*5*5*103
f(93) = 13109 = 13109
f(94) = 13345 = 5*17*157
f(95) = 13583 = 17*17*47
f(96) = 13823 = 23*601
f(97) = 14065 = 5*29*97
f(98) = 14309 = 41*349
f(99) = 14555 = 5*41*71
f(100) = 14803 = 113*131

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+49x-97

f(0)=97
f(1)=47
f(2)=5
f(3)=59
f(4)=23
f(5)=173
f(6)=233
f(7)=1
f(8)=359
f(9)=17
f(10)=29
f(11)=563
f(12)=127
f(13)=709
f(14)=157
f(15)=863
f(16)=41
f(17)=1
f(18)=1109
f(19)=239
f(20)=1283
f(21)=1373
f(22)=293
f(23)=1559
f(24)=331
f(25)=1753
f(26)=109
f(27)=1
f(28)=71
f(29)=433
f(30)=2273
f(31)=2383
f(32)=499
f(33)=2609
f(34)=1
f(35)=2843
f(36)=2963
f(37)=617
f(38)=3209
f(39)=1
f(40)=3463
f(41)=3593
f(42)=149
f(43)=227
f(44)=1
f(45)=4133
f(46)=4273
f(47)=883
f(48)=1
f(49)=941
f(50)=211
f(51)=5003
f(52)=1031
f(53)=5309
f(54)=1093
f(55)=5623
f(56)=5783
f(57)=1
f(58)=1
f(59)=251
f(60)=379
f(61)=389
f(62)=1
f(63)=6959
f(64)=1427
f(65)=103
f(66)=1
f(67)=307
f(68)=271
f(69)=1609
f(70)=8233
f(71)=8423
f(72)=1723
f(73)=383
f(74)=1801
f(75)=9203
f(76)=9403
f(77)=113
f(78)=577
f(79)=2003
f(80)=10223
f(81)=10433
f(82)=2129
f(83)=10859
f(84)=443
f(85)=491
f(86)=397
f(87)=2347
f(88)=11959
f(89)=2437
f(90)=12413
f(91)=269
f(92)=1
f(93)=13109
f(94)=1
f(95)=1
f(96)=601
f(97)=1
f(98)=349
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+49x-97 could be written as f(y)= y^2-697.25 with x=y-24.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+24.5
f'(x)>2x+48

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

97, 47, 5, 59, 23, 173, 233, 1, 359, 17, 29, 563, 127, 709, 157, 863, 41, 1, 1109, 239, 1283, 1373, 293, 1559, 331, 1753, 109, 1, 71, 433, 2273, 2383, 499, 2609, 1, 2843, 2963, 617, 3209, 1, 3463, 3593, 149, 227, 1, 4133, 4273, 883, 1, 941, 211, 5003, 1031, 5309, 1093, 5623, 5783, 1, 1, 251, 379, 389, 1, 6959, 1427, 103, 1, 307, 271, 1609, 8233, 8423, 1723, 383, 1801, 9203, 9403, 113, 577, 2003, 10223, 10433, 2129, 10859, 443, 491, 397, 2347, 11959, 2437, 12413, 269, 1, 13109, 1, 1, 601, 1, 349, 1, 131, 15053, 3061, 15559, 3163, 16073, 16333, 3319, 733, 137, 17393, 1039, 1, 139, 3697, 647, 1, 773, 19609, 1, 20183, 347, 4153, 21059, 4271, 367, 757, 4451, 1327, 1, 23173, 1021, 4759, 24109, 977, 1, 353, 5077, 547, 1, 643, 26693, 1, 1, 191, 1, 1669, 5743, 29059, 5881, 29753, 30103, 6091, 30809, 1, 1087, 31883, 6449, 32609, 1319, 33343, 33713, 401, 2027, 6967, 1531, 35593, 1439, 1, 7349, 523, 1, 7583, 1321, 7741, 39103, 39503, 1, 1, 479, 1, 1013, 8389, 42359, 1, 919, 43613, 8807, 1933, 1, 1, 1, 1847, 1, 1, 461, 2819, 569, 48809, 9851, 2161, 50153, 1, 51059, 10303, 51973, 52433, 1, 53359, 2153, 54293, 2381, 11047, 1, 661, 56663, 57143, 1, 58109, 11719, 59083, 1453, 1, 2633, 12211, 61553, 62053, 12511, 63059, 12713, 3769, 1, 277, 65609, 1, 66643, 1429, 13537, 68209, 1, 69263, 983, 1, 1201, 1, 71933, 1, 859, 4327, 14821, 74653, 1, 1, 557, 15373, 1, 77983, 683, 1, 3187, 2767, 1, 1, 1999, 971, 4889, 659, 3371, 84859, 743, 1, 1, 17443, 317, 17681, 89003, 89603, 18041, 1279, 1, 4001, 5449, 1097, 1997, 3779, 95093, 95713, 19267, 96959, 673, 98213, 1019, 1, 100109, 20149, 101383, 102023, 20533, 1, 1223, 3607, 105253, 1, 1, 1, 107873, 108533, 21839, 109859, 4421, 1, 111863, 1, 113209, 22777, 1, 6779, 4637, 4021, 23459, 929, 118673, 23873, 1, 24151, 121453, 1, 24571, 787, 857, 2659, 125683, 1487, 7477, 5113, 1, 129263, 25997, 5683, 1, 887, 132893, 1069, 134359, 1, 3313, 136573, 947, 138059, 1, 8209, 811, 28211, 1301, 28513, 1, 967, 1, 5021, 1171, 1, 1, 1, 149459, 30047, 151013, 8929, 1, 153359, 30829, 154933, 155723, 1361, 3347, 1, 1213, 5507, 1, 161309, 32423, 853, 163733, 32909, 1, 1, 4073, 4093, 1163, 1747, 34057, 1249, 1237, 6911, 1367, 1, 7621, 176123, 35393, 1, 35731, 10559, 1, 36241, 182059, 36583, 6337, 184633, 1613, 1187, 7489, 1, 1, 37967, 190709, 38317, 192463, 1, 457, 1, 39199, 1, 197773, 39733, 199559, 1, 1, 4933, 991, 204059, 40993, 8951, 206783, 41539, 208609, 1, 12379, 2179, 42457, 213209, 1, 215063, 9391, 8677, 217859, 43759, 7577, 220673, 1, 487, 44701, 1, 13259, 2663, 9883, 1, 229223, 1, 46229, 232109, 9323, 234043, 235013, 1, 8171, 2069, 1381, 239893, 1, 1, 2857, 2237, 5209, 1, 246809, 1709, 4217, 10861, 1, 251809, 1, 253823, 254833, 51169, 1, 2063, 1, 15289, 2269, 261959, 1, 264013, 3733, 1, 2039, 53629, 269183, 270223, 1, 1, 2377, 274403, 275453, 3253, 1, 541, 1877, 2143, 56359, 6899, 1, 12391, 286063, 57427, 288209, 1231, 1, 291443, 11701, 6247, 3467, 1, 1, 2591, 299059, 1, 4243, 1583, 1, 304559, 1, 2207, 1, 2131, 1, 1, 312343, 18439, 3701, 5351, 63367, 317963, 319093, 12809, 321359, 64499, 14071, 324773, 65183, 327059, 1601, 1, 1, 587, 19577, 3929, 335123, 14621, 67489, 338609, 13591, 1, 1, 1, 1, 69127, 1, 347993, 13967, 15233, 70309, 20749, 1, 71023, 607, 1, 358703, 1, 72221, 362309, 1, 3541, 365933, 1, 368359, 14783, 370793, 372013, 4391, 22027, 1, 1, 1, 1, 6451, 76369, 383083, 5413, 1307, 386809, 77611, 389303, 390553, 3407, 393059, 4639, 23269, 396833, 1, 1, 641, 1483, 403163, 1721, 405709, 3539, 408263, 409543, 16433, 412109, 2851, 414683, 24469, 4909, 418559, 1, 18311, 422453, 84751, 425059, 1, 4409, 10463, 2099, 6079, 17317, 434243, 435563, 1, 1, 5171, 440863, 442193, 1, 444859, 1, 1783, 448873, 1, 677, 1, 454253, 455603, 1549, 458309, 1, 1, 1, 1, 1, 1, 20341, 1, 94117, 471959, 691, 4201, 16417, 1, 1, 1, 481633, 21001, 1, 1, 97441, 488603, 490003, 3389, 1, 1, 4547, 1619, 99689, 1, 20051, 1, 1523, 101107, 4651, 5981, 29989, 511243, 20507, 1, 4483, 17827, 1913, 1, 521309, 104551, 524203, 4139, 2243, 528559, 1493, 2281, 1, 6287, 535859, 21493, 5231, 9157, 108347, 13249, 2657, 9257, 547643, 1, 550609, 110419, 553583, 555073, 1, 1931, 1, 561053, 1567, 1, 565559, 4931, 1, 570083, 114319, 573109, 4597, 19867, 2417, 115837, 8179, 116447, 1, 34429, 23473, 588359, 117979, 2803, 592973, 118903, 596059, 2543, 599153, 600703, 5237, 1, 2953, 1, 608483, 7177, 35977, 24527, 614743, 616313, 1, 1, 4283, 622613, 1, 25031, 4789, 125789, 10687, 632123, 126743, 635309, 1, 1, 6599, 128341, 5693, 128983, 646523, 648133, 4481, 1, 26119, 654593, 1, 1, 1, 1, 662713, 39079, 1, 23021, 1, 16363, 1, 1, 29383, 1, 14449, 4969, 136481, 4591, 137143, 2239, 689033, 138139, 1, 1, 1, 1, 1, 6803, 140477, 2029, 3109, 28297, 1871, 142159, 712483, 31051, 4937, 717559, 1, 42409, 42509, 1, 5717, 2467, 729473, 731183, 6373, 12451, 29453, 738043, 18043, 3617, 743209, 1, 25747, 1, 1, 1, 6553, 755333, 10663, 3229, 1, 152461, 764053, 26407, 153511, 769309, 154213, 33601, 774583, 155269, 778109, 1, 45979, 783413, 157037, 786959, 157747, 790513, 792293, 1, 7043, 5501, 4621, 2309, 160603, 8297, 1, 1, 47659, 1, 1, 1, 1, 3023, 164209, 1, 32987, 826493, 6323, 166027, 1, 1, 1, 7411, 1, 49477, 1, 1951, 3373, 169693, 1, 1, 2447, 1, 171541, 859559, 172283, 1889, 7937, 1, 4549, 1, 51329, 51439, 175267, 38183, 176017, 881963, 8581, 1, 21649, 4339, 2693, 9209, 179033, 897059, 7817, 1, 902753, 1, 53327, 181693, 1, 6659, 182839, 916109, 36721, 1, 1, 3931, 1, 185527, 1, 19819, 37337, 935359, 11027, 55249, 2969, 1, 945059, 189401, 6827, 1, 1, 4999, 191353, 7549, 1, 192529, 964609, 1, 23623, 57089, 1, 974459, 1, 978413, 980393, 1, 984359, 197269, 1, 990323, 198463, 994309, 199261, 4177, 1000303, 200461, 59077, 11839, 1008323, 8941, 8803, 1014359, 1, 35117, 1020413, 204487, 1, 205297, 1, 1030543, 1, 44983, 207329, 61099, 2111, 208553, 1044809, 209371,

6. Sequence of the polynom (only primes)

97, 47, 5, 59, 23, 173, 233, 359, 17, 29, 563, 127, 709, 157, 863, 41, 1109, 239, 1283, 1373, 293, 1559, 331, 1753, 109, 71, 433, 2273, 2383, 499, 2609, 2843, 2963, 617, 3209, 3463, 3593, 149, 227, 4133, 4273, 883, 941, 211, 5003, 1031, 5309, 1093, 5623, 5783, 251, 379, 389, 6959, 1427, 103, 307, 271, 1609, 8233, 8423, 1723, 383, 1801, 9203, 9403, 113, 577, 2003, 10223, 10433, 2129, 10859, 443, 491, 397, 2347, 11959, 2437, 12413, 269, 13109, 601, 349, 131, 15053, 3061, 15559, 3163, 16073, 16333, 3319, 733, 137, 17393, 1039, 139, 3697, 647, 773, 19609, 20183, 347, 4153, 21059, 4271, 367, 757, 4451, 1327, 23173, 1021, 4759, 24109, 977, 353, 5077, 547, 643, 26693, 191, 1669, 5743, 29059, 5881, 29753, 30103, 6091, 30809, 1087, 31883, 6449, 32609, 1319, 33343, 33713, 401, 2027, 6967, 1531, 35593, 1439, 7349, 523, 7583, 1321, 7741, 39103, 39503, 479, 1013, 8389, 42359, 919, 43613, 8807, 1933, 1847, 461, 2819, 569, 48809, 9851, 2161, 50153, 51059, 10303, 51973, 52433, 53359, 2153, 54293, 2381, 11047, 661, 56663, 57143, 58109, 11719, 59083, 1453, 2633, 12211, 61553, 62053, 12511, 63059, 12713, 3769, 277, 65609, 66643, 1429, 13537, 68209, 69263, 983, 1201, 71933, 859, 4327, 14821, 74653, 557, 15373, 77983, 683, 3187, 2767, 1999, 971, 4889, 659, 3371, 84859, 743, 17443, 317, 17681, 89003, 89603, 18041, 1279, 4001, 5449, 1097, 1997, 3779, 95093, 95713, 19267, 96959, 673, 98213, 1019, 100109, 20149, 101383, 102023, 20533, 1223, 3607, 105253, 107873, 108533, 21839, 109859, 4421, 111863, 113209, 22777, 6779, 4637, 4021, 23459, 929, 118673, 23873, 24151, 121453, 24571, 787, 857, 2659, 125683, 1487, 7477, 5113, 129263, 25997, 5683, 887, 132893, 1069, 134359, 3313, 136573, 947, 138059, 8209, 811, 28211, 1301, 28513, 967, 5021, 1171, 149459, 30047, 151013, 8929, 153359, 30829, 154933, 155723, 1361, 3347, 1213, 5507, 161309, 32423, 853, 163733, 32909, 4073, 4093, 1163, 1747, 34057, 1249, 1237, 6911, 1367, 7621, 176123, 35393, 35731, 10559, 36241, 182059, 36583, 6337, 184633, 1613, 1187, 7489, 37967, 190709, 38317, 192463, 457, 39199, 197773, 39733, 199559, 4933, 991, 204059, 40993, 8951, 206783, 41539, 208609, 12379, 2179, 42457, 213209, 215063, 9391, 8677, 217859, 43759, 7577, 220673, 487, 44701, 13259, 2663, 9883, 229223, 46229, 232109, 9323, 234043, 235013, 8171, 2069, 1381, 239893, 2857, 2237, 5209, 246809, 1709, 4217, 10861, 251809, 253823, 254833, 51169, 2063, 15289, 2269, 261959, 264013, 3733, 2039, 53629, 269183, 270223, 2377, 274403, 275453, 3253, 541, 1877, 2143, 56359, 6899, 12391, 286063, 57427, 288209, 1231, 291443, 11701, 6247, 3467, 2591, 299059, 4243, 1583, 304559, 2207, 2131, 312343, 18439, 3701, 5351, 63367, 317963, 319093, 12809, 321359, 64499, 14071, 324773, 65183, 327059, 1601, 587, 19577, 3929, 335123, 14621, 67489, 338609, 13591, 69127, 347993, 13967, 15233, 70309, 20749, 71023, 607, 358703, 72221, 362309, 3541, 365933, 368359, 14783, 370793, 372013, 4391, 22027, 6451, 76369, 383083, 5413, 1307, 386809, 77611, 389303, 390553, 3407, 393059, 4639, 23269, 396833, 641, 1483, 403163, 1721, 405709, 3539, 408263, 409543, 16433, 412109, 2851, 414683, 24469, 4909, 418559, 18311, 422453, 84751, 425059, 4409, 10463, 2099, 6079, 17317, 434243, 435563, 5171, 440863, 442193, 444859, 1783, 448873, 677, 454253, 455603, 1549, 458309, 20341, 94117, 471959, 691, 4201, 16417, 481633, 21001, 97441, 488603, 490003, 3389, 4547, 1619, 99689, 20051, 1523, 101107, 4651, 5981, 29989, 511243, 20507, 4483, 17827, 1913, 521309, 104551, 524203, 4139, 2243, 528559, 1493, 2281, 6287, 535859, 21493, 5231, 9157, 108347, 13249, 2657, 9257, 547643, 550609, 110419, 553583, 555073, 1931, 561053, 1567, 565559, 4931, 570083, 114319, 573109, 4597, 19867, 2417, 115837, 8179, 116447, 34429, 23473, 588359, 117979, 2803, 592973, 118903, 596059, 2543, 599153, 600703, 5237, 2953, 608483, 7177, 35977, 24527, 614743, 616313, 4283, 622613, 25031, 4789, 125789, 10687, 632123, 126743, 635309, 6599, 128341, 5693, 128983, 646523, 648133, 4481, 26119, 654593, 662713, 39079, 23021, 16363, 29383, 14449, 4969, 136481, 4591, 137143, 2239, 689033, 138139, 6803, 140477, 2029, 3109, 28297, 1871, 142159, 712483, 31051, 4937, 717559, 42409, 42509, 5717, 2467, 729473, 731183, 6373, 12451, 29453, 738043, 18043, 3617, 743209, 25747, 6553, 755333, 10663, 3229, 152461, 764053, 26407, 153511, 769309, 154213, 33601, 774583, 155269, 778109, 45979, 783413, 157037, 786959, 157747, 790513, 792293, 7043, 5501, 4621, 2309, 160603, 8297, 47659, 3023, 164209, 32987, 826493, 6323, 166027, 7411, 49477, 1951, 3373, 169693, 2447, 171541, 859559, 172283, 1889, 7937, 4549, 51329, 51439, 175267, 38183, 176017, 881963, 8581, 21649, 4339, 2693, 9209, 179033, 897059, 7817, 902753, 53327, 181693, 6659, 182839, 916109, 36721, 3931, 185527, 19819, 37337, 935359, 11027, 55249, 2969, 945059, 189401, 6827, 4999, 191353, 7549, 192529, 964609, 23623, 57089, 974459, 978413, 980393, 984359, 197269, 990323, 198463, 994309, 199261, 4177, 1000303, 200461, 59077, 11839, 1008323, 8941, 8803, 1014359, 35117, 1020413, 204487, 205297, 1030543, 44983, 207329, 61099, 2111, 208553, 1044809, 209371,

7. Distribution of the primes

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

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)
1109720.9000000.7000000.2000000.0000000.0000000.000000
21008140410.8100000.4000000.4100009.0000005.71428620.500000
31.0007442584860.7440000.2580000.4860009.1851856.45000011.853659
410.0007.2791.8385.4410.7279000.1838000.5441009.7836027.12403111.195474
5100.00072.16414.21257.9520.7216400.1421200.5795209.9140007.73231810.650983
61.000.000716.992115.966601.0260.7169920.1159660.6010269.9355918.15972410.371100
710.000.0007.136.311981.1926.155.1190.7136310.0981190.6155129.9531258.46103210.241019
8100.000.00071.082.5148.505.59062.576.9240.7108250.0850560.6257699.9606808.66863010.166647
91.000.000.000708.726.25375.058.549633.667.7040.7087260.0750590.6336689.9704738.82461510.126220
1010.000.000.0007.070.698.522671.730.2436.398.968.2790.7070700.0671730.6398979.9766288.94941610.098303


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)
123301.5000001.5000000.0000000.0000000.0000000.000000
245411.2500001.0000000.2500001.6666671.333333inf
388711.0000000.8750000.1250001.6000001.7500001.000000
416151050.9375000.6250000.3125001.8750001.4285715.000000
5322917120.9062500.5312500.3750001.9333331.7000002.400000
6645430240.8437500.4687500.3750001.8620691.7647062.000000
712810448560.8125000.3750000.4375001.9259261.6000002.333333
8256198851130.7734380.3320310.4414061.9038461.7708332.017857
95123901462440.7617190.2851560.4765621.9696971.7176472.159292
101.0247622615010.7441410.2548830.4892581.9538461.7876712.053279
112.0481.5094761.0330.7368160.2324220.5043951.9803151.8237552.061876
124.0963.0068352.1710.7338870.2038570.5300291.9920481.7542022.101646
138.1925.9851.5434.4420.7305910.1883540.5422361.9910181.8479042.046062
1416.38411.9382.8119.1270.7286380.1715700.5570681.9946531.8217762.054705
1532.76823.7285.20418.5240.7241210.1588130.5653081.9876031.8512982.029583
1665.53647.3429.70137.6410.7223820.1480260.5743561.9951961.8641432.032012
17131.07294.45318.15076.3030.7206190.1384740.5821461.9951211.8709412.027125
18262.144188.58033.995154.5850.7193760.1296810.5896951.9965491.8730032.025936
19524.288376.70963.927312.7820.7185150.1219310.5965841.9976081.8804822.023366
201.048.576751.849121.156630.6930.7170190.1155430.6014761.9958351.8952242.016398
212.097.1521.501.301229.8071.271.4940.7158760.1095810.6062961.9968121.8967862.016027
224.194.3042.998.486437.1342.561.3520.7148950.1042210.6106741.9972581.9021792.014443
238.388.6085.988.353832.8335.155.5200.7138670.0992810.6145861.9971261.9052122.012812
2416.777.21611.960.5771.590.72210.369.8550.7129060.0948140.6180921.9973071.9100132.011408
2533.554.43223.891.5213.046.56520.844.9560.7120230.0907950.6212281.9975221.9152092.010149
2667.108.86447.731.6865.842.41241.889.2740.7112580.0870590.6241991.9978511.9177052.009564
27134.217.72895.365.17111.225.45084.139.7210.7105260.0836360.6268901.9979421.9213732.008622
28268.435.456190.552.75221.599.848168.952.9040.7098640.0804660.6293991.9981381.9241862.008004
29536.870.912380.773.12241.620.625339.152.4970.7092450.0775240.6317211.9982561.9268942.007379
301.073.741.824760.927.86880.303.587680.624.2810.7086690.0747890.6338811.9983761.9294182.006838
312.147.483.6481.520.706.080155.141.8151.365.564.2650.7081340.0722440.6358901.9984891.9319412.006341
324.294.967.2963.039.264.308300.080.3392.739.183.9690.7076340.0698680.6377661.9985881.9342332.005899
338.589.934.5926.074.525.541581.036.1375.493.489.4040.7071680.0676420.6395261.9986831.9362692.005520
3417.179.869.18412.141.534.6181.126.198.51311.015.336.1050.7067300.0655530.6411771.9987621.9382592.005162


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
123121011
244131111
387162122
41610282233
532174134355
664307238679
712848133513101114
825685285724162124
9512146509635304041
101.0242619117059646969
112.048476161315112123113128
124.096835279556193214212216
138.1921.5435101.033378384394387
1416.3842.8119371.874696703708704
1532.7685.2041.7643.4401.3081.2891.2991.308
1665.5369.7013.2516.4502.3832.4212.4322.465
17131.07218.1506.06912.0814.4864.5154.5814.568
18262.14433.99511.36222.6338.4518.5218.5058.518
19524.28863.92721.28942.63815.91715.99115.99316.026
201.048.576121.15640.37480.78230.26930.34030.31830.229
212.097.152229.80776.685153.12257.71757.41057.38857.292
224.194.304437.134145.923291.211109.731109.281109.119109.003
238.388.608832.833277.799555.034208.789207.887208.308207.849
2416.777.2161.590.722530.7041.060.018397.669397.588398.256397.209
2533.554.4323.046.5651.016.0292.030.536761.537761.504762.167761.357
2667.108.8645.842.4121.947.8573.894.5551.460.2771.461.2341.460.7331.460.168
27134.217.72811.225.4503.741.3417.484.1092.806.6582.807.4742.806.9812.804.337
28268.435.45621.599.8487.199.19614.400.6525.400.0815.400.5985.398.7315.400.438
29536.870.91241.620.62513.870.18627.750.43910.406.30510.405.60910.402.61810.406.093
301.073.741.82480.303.58726.768.33953.535.24820.076.19220.074.49420.076.49720.076.404
312.147.483.648155.141.81551.714.571103.427.24438.783.36938.783.42838.789.28638.785.732
324.294.967.296300.080.339100.022.137200.058.20275.015.79475.019.57175.019.33275.025.642
338.589.934.592581.036.137193.679.779387.356.358145.251.279145.258.223145.262.138145.264.497
3417.179.869.1841.126.198.513375.408.179750.790.334281.543.352281.559.926281.547.369281.547.866


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
120000000
241010001
381010001
4165231022
53212662244
6642410143885
712856312510171613
8256113654824273230
951224413710757616759
101.024501290211120127130124
112.0481.033572461254267249263
124.0962.1711.184987538549523561
138.1924.4422.4002.0421.1051.0911.1231.123
1416.3849.1274.8934.2342.2202.2622.3272.318
1532.76818.5249.8788.6464.5984.5944.6514.681
1665.53637.64119.93717.7049.3889.4009.4379.416
17131.07276.30340.12536.17819.19519.09519.03018.983
18262.144154.58581.27673.30938.78938.64838.52838.620
19524.288312.782164.009148.77378.26078.21278.11778.193
201.048.576630.693330.043300.650157.874157.550157.271157.998
212.097.1521.271.494663.139608.355318.287317.311317.624318.272
224.194.3042.561.3521.332.3571.228.995640.866639.685640.049640.752
238.388.6085.155.5202.673.8112.481.7091.288.5091.287.9851.289.4281.289.598
2416.777.21610.369.8555.367.9765.001.8792.593.0472.590.6292.593.7482.592.431
2533.554.43220.844.95610.771.98010.072.9765.210.2485.210.8525.213.9505.209.906
2667.108.86441.889.27421.611.52320.277.75110.469.13010.473.89610.473.52110.472.727
27134.217.72884.139.72143.345.59840.794.12321.032.89721.039.03521.035.51121.032.278
28268.435.456168.952.90486.920.76482.032.14042.233.04342.237.08042.244.45442.238.327
29536.870.912339.152.497174.278.719164.873.77884.777.05484.788.11784.794.73584.792.591
301.073.741.824680.624.281349.378.192331.246.089170.149.444170.158.538170.161.947170.154.352
312.147.483.6481.365.564.265700.246.300665.317.965341.387.144341.385.435341.397.907341.393.779
324.294.967.2962.739.183.9691.403.346.7991.335.837.170684.797.681684.770.734684.802.736684.812.818
338.589.934.5925.493.489.4042.812.007.5612.681.481.8431.373.380.3051.373.324.3541.373.379.1671.373.405.578
3417.179.869.18411.015.336.1055.634.000.6455.381.335.4602.753.825.9662.753.821.7702.753.823.8922.753.864.477


8. Check for existing Integer Sequences by OEIS

Found in Database : 97, 47, 5, 59, 23, 173, 233, 1, 359, 17, 29, 563, 127, 709, 157, 863, 41, 1, 1109, 239,
Found in Database : 97, 47, 5, 59, 23, 173, 233, 359, 17, 29, 563, 127, 709, 157, 863, 41, 1109, 239, 1283, 1373, 293, 1559, 331, 1753, 109, 71, 433, 2273, 2383, 499, 2609, 2843, 2963, 617, 3209,
Found in Database : 5, 17, 23, 29, 41, 47, 59, 71, 97, 103, 109, 113, 127, 131, 137, 139, 149,