Inhaltsverzeichnis

Development of
Algorithmic Constructions

17:30:38
Deutsch
19.Apr 2024

Polynom = x^2+66x-73

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) = 73 = 73
f(1) = 3 = 3
f(2) = 63 = 3*3*7
f(3) = 67 = 67
f(4) = 207 = 3*3*23
f(5) = 141 = 3*47
f(6) = 359 = 359
f(7) = 219 = 3*73
f(8) = 519 = 3*173
f(9) = 301 = 7*43
f(10) = 687 = 3*229
f(11) = 387 = 3*3*43
f(12) = 863 = 863
f(13) = 477 = 3*3*53
f(14) = 1047 = 3*349
f(15) = 571 = 571
f(16) = 1239 = 3*7*59
f(17) = 669 = 3*223
f(18) = 1439 = 1439
f(19) = 771 = 3*257
f(20) = 1647 = 3*3*3*61
f(21) = 877 = 877
f(22) = 1863 = 3*3*3*3*23
f(23) = 987 = 3*7*47
f(24) = 2087 = 2087
f(25) = 1101 = 3*367
f(26) = 2319 = 3*773
f(27) = 1219 = 23*53
f(28) = 2559 = 3*853
f(29) = 1341 = 3*3*149
f(30) = 2807 = 7*401
f(31) = 1467 = 3*3*163
f(32) = 3063 = 3*1021
f(33) = 1597 = 1597
f(34) = 3327 = 3*1109
f(35) = 1731 = 3*577
f(36) = 3599 = 59*61
f(37) = 1869 = 3*7*89
f(38) = 3879 = 3*3*431
f(39) = 2011 = 2011
f(40) = 4167 = 3*3*463
f(41) = 2157 = 3*719
f(42) = 4463 = 4463
f(43) = 2307 = 3*769
f(44) = 4767 = 3*7*227
f(45) = 2461 = 23*107
f(46) = 5079 = 3*1693
f(47) = 2619 = 3*3*3*97
f(48) = 5399 = 5399
f(49) = 2781 = 3*3*3*103
f(50) = 5727 = 3*23*83
f(51) = 2947 = 7*421
f(52) = 6063 = 3*43*47
f(53) = 3117 = 3*1039
f(54) = 6407 = 43*149
f(55) = 3291 = 3*1097
f(56) = 6759 = 3*3*751
f(57) = 3469 = 3469
f(58) = 7119 = 3*3*7*113
f(59) = 3651 = 3*1217
f(60) = 7487 = 7487
f(61) = 3837 = 3*1279
f(62) = 7863 = 3*2621
f(63) = 4027 = 4027
f(64) = 8247 = 3*2749
f(65) = 4221 = 3*3*7*67
f(66) = 8639 = 53*163
f(67) = 4419 = 3*3*491
f(68) = 9039 = 3*23*131
f(69) = 4621 = 4621
f(70) = 9447 = 3*47*67
f(71) = 4827 = 3*1609
f(72) = 9863 = 7*1409
f(73) = 5037 = 3*23*73
f(74) = 10287 = 3*3*3*3*127
f(75) = 5251 = 59*89
f(76) = 10719 = 3*3*3*397
f(77) = 5469 = 3*1823
f(78) = 11159 = 11159
f(79) = 5691 = 3*7*271
f(80) = 11607 = 3*53*73
f(81) = 5917 = 61*97
f(82) = 12063 = 3*4021
f(83) = 6147 = 3*3*683
f(84) = 12527 = 12527
f(85) = 6381 = 3*3*709
f(86) = 12999 = 3*7*619
f(87) = 6619 = 6619
f(88) = 13479 = 3*4493
f(89) = 6861 = 3*2287
f(90) = 13967 = 13967
f(91) = 7107 = 3*23*103
f(92) = 14463 = 3*3*1607
f(93) = 7357 = 7*1051
f(94) = 14967 = 3*3*1663
f(95) = 7611 = 3*43*59
f(96) = 15479 = 23*673
f(97) = 7869 = 3*43*61
f(98) = 15999 = 3*5333
f(99) = 8131 = 47*173
f(100) = 16527 = 3*7*787

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+66x-73

f(0)=73
f(1)=3
f(2)=7
f(3)=67
f(4)=23
f(5)=47
f(6)=359
f(7)=1
f(8)=173
f(9)=43
f(10)=229
f(11)=1
f(12)=863
f(13)=53
f(14)=349
f(15)=571
f(16)=59
f(17)=223
f(18)=1439
f(19)=257
f(20)=61
f(21)=877
f(22)=1
f(23)=1
f(24)=2087
f(25)=367
f(26)=773
f(27)=1
f(28)=853
f(29)=149
f(30)=401
f(31)=163
f(32)=1021
f(33)=1597
f(34)=1109
f(35)=577
f(36)=1
f(37)=89
f(38)=431
f(39)=2011
f(40)=463
f(41)=719
f(42)=4463
f(43)=769
f(44)=227
f(45)=107
f(46)=1693
f(47)=97
f(48)=5399
f(49)=103
f(50)=83
f(51)=421
f(52)=1
f(53)=1039
f(54)=1
f(55)=1097
f(56)=751
f(57)=3469
f(58)=113
f(59)=1217
f(60)=7487
f(61)=1279
f(62)=2621
f(63)=4027
f(64)=2749
f(65)=1
f(66)=1
f(67)=491
f(68)=131
f(69)=4621
f(70)=1
f(71)=1609
f(72)=1409
f(73)=1
f(74)=127
f(75)=1
f(76)=397
f(77)=1823
f(78)=11159
f(79)=271
f(80)=1
f(81)=1
f(82)=4021
f(83)=683
f(84)=12527
f(85)=709
f(86)=619
f(87)=6619
f(88)=4493
f(89)=2287
f(90)=13967
f(91)=1
f(92)=1607
f(93)=1051
f(94)=1663
f(95)=1
f(96)=673
f(97)=1
f(98)=5333
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+66x-73 could be written as f(y)= y^2-1162 with x=y-33

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+33
f'(x)>2x+65

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

73, 3, 7, 67, 23, 47, 359, 1, 173, 43, 229, 1, 863, 53, 349, 571, 59, 223, 1439, 257, 61, 877, 1, 1, 2087, 367, 773, 1, 853, 149, 401, 163, 1021, 1597, 1109, 577, 1, 89, 431, 2011, 463, 719, 4463, 769, 227, 107, 1693, 97, 5399, 103, 83, 421, 1, 1039, 1, 1097, 751, 3469, 113, 1217, 7487, 1279, 2621, 4027, 2749, 1, 1, 491, 131, 4621, 1, 1609, 1409, 1, 127, 1, 397, 1823, 11159, 271, 1, 1, 4021, 683, 12527, 709, 619, 6619, 4493, 2287, 13967, 1, 1607, 1051, 1663, 1, 673, 1, 5333, 1, 787, 311, 151, 1, 5869, 8941, 6053, 439, 18719, 3167, 2143, 9787, 2207, 3359, 1, 3457, 7013, 1, 7213, 1, 22247, 179, 7621, 11587, 7829, 3967, 1, 4073, 1, 12541, 941, 4289, 389, 1, 1, 1933, 9133, 1, 653, 1579, 1, 14557, 1, 4969, 1, 5087, 1, 15619, 3511, 761, 32327, 5449, 1, 1, 191, 211, 4937, 647, 193, 17851, 523, 6079, 1, 887, 1, 827, 4271, 6473, 39239, 6607, 1907, 1, 1, 2293, 41687, 2339, 14173, 3067, 1, 7297, 44207, 1, 1669, 1, 1, 7727, 883, 7873, 691, 24061, 16189, 1, 49463, 1, 1, 25411, 17093, 8623, 7457, 1, 5903, 1, 6007, 1, 821, 1321, 811, 28219, 18973, 1063, 541, 1, 2803, 503, 19949, 1, 733, 10223, 6871, 1, 6983, 10559, 63863, 10729, 1, 617, 1, 3691, 66959, 1, 22669, 34267, 23021, 1657, 3049, 11777, 293, 35869, 2677, 1, 1, 1, 24821, 37507, 25189, 4229, 76679, 613, 25933, 39181, 26309, 13249, 1, 1, 1289, 1, 9151, 601, 1777, 1, 28229, 6091, 28621, 1601, 1427, 1, 1, 1033, 4259, 1, 90647, 1, 1, 46237, 10343, 1, 1, 15823, 1, 48091, 1, 5413, 14009, 5483, 1, 331, 33533, 1, 101879, 2441, 3821, 51907, 1, 17519, 105767, 17737, 5099, 1, 1571, 1, 1, 6133, 37021, 347, 1, 1, 113759, 19073, 12791, 57901, 1, 1, 2741, 19759, 39749, 59971, 40213, 1, 122039, 2273, 41149, 2699, 41621, 20929, 18041, 1, 1, 1, 1, 21647, 997, 1, 44021, 991, 947, 7459, 134999, 7541, 1, 68611, 45989, 379, 1567, 23369, 1, 1, 1759, 23873, 143999, 1049, 1, 1, 1, 1, 859, 1, 50053, 1, 1, 3631, 153287, 25679, 17207, 1, 17383, 1, 1, 1151, 419, 80221, 911, 3001, 1, 433, 54829, 82651, 55373, 27823, 167759, 28097, 2689, 1811, 1, 28649, 3259, 28927, 953, 12517, 58693, 9829, 1, 9923, 1, 1013, 8627, 1319, 4253, 1, 1, 1973, 1, 4457, 3083, 31489, 1, 1423, 63853, 10691, 27617, 10789, 65029, 97987, 1, 1433, 198647, 4751, 22271, 100669, 977, 33857, 204047, 34159, 9803, 103387, 1, 3863, 209519, 1, 1499, 1, 71069, 1, 215063, 35999, 24103, 1123, 1, 1, 3023, 1, 74189, 1, 74821, 1789, 226367, 1, 1619, 1879, 76733, 1, 33161, 1, 8669, 117517, 8741, 1, 237959, 5689, 79973, 5237, 80629, 1, 243863, 1, 509, 1487, 82613, 1, 1091, 1, 27983, 18061, 1, 1, 255887, 1, 1, 129469, 12379, 1, 262007, 4871, 1, 132547, 2063, 6361, 268199, 1951, 1, 135661, 1, 45569, 39209, 1, 92189, 1093, 92893, 15541, 1237, 2237, 94309, 1, 95021, 1, 5419, 2089, 1531, 145219, 1, 48767, 1, 1, 98621, 21211, 99349, 16619, 300239, 16741, 1381, 151771, 1, 1, 6529, 51329, 563, 3607, 34591, 1, 13633, 1, 105269, 1481, 1, 1, 1, 5953, 1, 161869, 108293, 1, 6961, 7817, 36607, 3119, 1, 55487, 1, 1, 1, 168781, 112909, 1, 341063, 19013, 1, 1, 5011, 1, 1, 58217, 4327, 175837, 1867, 59009, 3449, 59407, 1229, 3041, 2791, 1, 8429, 1, 121621, 183037, 5323, 61417, 52817, 1, 41351, 8117, 1, 62639, 2969, 9007, 1733, 3121, 1, 1, 384479, 2381, 18427, 2659, 1, 65119, 391967, 65537, 1, 1, 44111, 66377, 399527, 1, 5827, 201667, 19267, 22549, 1, 22691, 136573, 2309, 2593, 1, 1, 1613, 15461, 209371, 1, 70223, 1, 70657, 6163, 1, 1, 1, 430487, 1, 2447, 217219, 145253, 1, 7187, 1, 7001, 221197, 1, 74177, 446399, 74623, 1399, 32173, 150589, 2797, 1373, 1, 152389, 229261, 1, 76873, 20113, 1459, 1, 233347, 1, 11177, 10949, 78697, 3671, 3253, 1, 26539, 1, 26693, 160621, 1, 2213, 1, 21193, 1, 1, 245821, 2029, 3583, 1429, 1, 23747, 250051, 167173, 27941, 504359, 28099, 169069, 1, 170021, 1, 512927, 1453, 1, 2417, 8233, 3769, 521567, 1, 174821, 262957, 7643, 1, 530279, 1, 1997, 6217, 1, 89599, 1, 90089, 60223, 1, 1, 1493, 3061, 1, 3907, 276187, 1, 30853, 6709, 31019, 1, 12203, 1, 94057, 1, 94559, 2341, 1, 1, 1, 5927, 1, 4099, 289741, 1, 32363, 584063, 32533, 195709, 1, 1741, 1, 3929, 99137, 1, 1549, 1, 100169, 1, 1, 201893, 303619, 202933, 1, 611927, 1, 3361, 308317, 206069, 1949, 621359, 1, 1, 1, 1, 104879, 630863, 4583, 211349, 45403, 1, 35491, 10499, 1, 2083, 322627, 30803, 108079, 4363, 2311, 24197, 327469, 24317, 15671, 5839, 4793, 221021, 1, 222109, 1, 4159, 1, 1, 337261, 1, 1, 679463, 16217, 1, 342211, 76231, 1, 3037, 1, 32987, 347197, 3463, 1, 1, 12983, 1, 1, 4441, 1, 9719, 118529, 1, 5857, 11369, 119657, 719639, 120223, 241013, 362371, 1, 5779, 1, 1, 244429, 367501, 5711, 5351, 2459, 2027, 27541, 372667, 1, 124799, 3557, 17911, 1979, 2111, 2837, 42179, 3323, 42373, 1, 383107, 255989, 128287, 4733, 128873, 86111, 1, 3761, 2767, 7309, 130639, 1999, 17117, 37579, 1, 1, 14713, 1, 7529, 4519, 19087, 803447, 134207, 89671, 404419, 90071, 1, 1, 3163, 272621, 1, 1, 1, 1, 6563, 12011, 1, 3343, 1, 836063, 1913, 1, 420781, 31237, 1, 847079, 937, 4649, 60901, 1, 1, 858167, 47779, 12491, 431869, 1, 144577, 2017, 1, 97007, 437467, 97423, 20921, 880559, 147073, 294773, 1987, 1, 16481, 2963, 1, 1, 4357, 6379, 150223, 4729, 1, 1, 7703, 101207, 1, 39769, 152767, 1, 5171, 5801, 51349, 4799, 51563, 310021, 66571, 1, 2557, 13997, 156623, 34877, 1, 5003, 2357, 41281, 1, 317789, 10163, 319093, 1, 6451, 1, 321709, 7927, 1, 161839, 1, 3779, 1, 11383, 108991, 1, 16693, 23497, 2917, 1, 1, 1, 2153, 1, 47659, 1, 14563, 167809, 1008863, 1, 112543, 72493, 1, 169823, 1020959, 170497, 5791, 9689, 49003, 57283, 1033127, 1, 345733, 519619, 15091, 24841, 1045367, 174569, 1, 22859, 13007, 175937, 2477, 1, 8231, 2521,

6. Sequence of the polynom (only primes)

73, 3, 7, 67, 23, 47, 359, 173, 43, 229, 863, 53, 349, 571, 59, 223, 1439, 257, 61, 877, 2087, 367, 773, 853, 149, 401, 163, 1021, 1597, 1109, 577, 89, 431, 2011, 463, 719, 4463, 769, 227, 107, 1693, 97, 5399, 103, 83, 421, 1039, 1097, 751, 3469, 113, 1217, 7487, 1279, 2621, 4027, 2749, 491, 131, 4621, 1609, 1409, 127, 397, 1823, 11159, 271, 4021, 683, 12527, 709, 619, 6619, 4493, 2287, 13967, 1607, 1051, 1663, 673, 5333, 787, 311, 151, 5869, 8941, 6053, 439, 18719, 3167, 2143, 9787, 2207, 3359, 3457, 7013, 7213, 22247, 179, 7621, 11587, 7829, 3967, 4073, 12541, 941, 4289, 389, 1933, 9133, 653, 1579, 14557, 4969, 5087, 15619, 3511, 761, 32327, 5449, 191, 211, 4937, 647, 193, 17851, 523, 6079, 887, 827, 4271, 6473, 39239, 6607, 1907, 2293, 41687, 2339, 14173, 3067, 7297, 44207, 1669, 7727, 883, 7873, 691, 24061, 16189, 49463, 25411, 17093, 8623, 7457, 5903, 6007, 821, 1321, 811, 28219, 18973, 1063, 541, 2803, 503, 19949, 733, 10223, 6871, 6983, 10559, 63863, 10729, 617, 3691, 66959, 22669, 34267, 23021, 1657, 3049, 11777, 293, 35869, 2677, 24821, 37507, 25189, 4229, 76679, 613, 25933, 39181, 26309, 13249, 1289, 9151, 601, 1777, 28229, 6091, 28621, 1601, 1427, 1033, 4259, 90647, 46237, 10343, 15823, 48091, 5413, 14009, 5483, 331, 33533, 101879, 2441, 3821, 51907, 17519, 105767, 17737, 5099, 1571, 6133, 37021, 347, 113759, 19073, 12791, 57901, 2741, 19759, 39749, 59971, 40213, 122039, 2273, 41149, 2699, 41621, 20929, 18041, 21647, 997, 44021, 991, 947, 7459, 134999, 7541, 68611, 45989, 379, 1567, 23369, 1759, 23873, 143999, 1049, 859, 50053, 3631, 153287, 25679, 17207, 17383, 1151, 419, 80221, 911, 3001, 433, 54829, 82651, 55373, 27823, 167759, 28097, 2689, 1811, 28649, 3259, 28927, 953, 12517, 58693, 9829, 9923, 1013, 8627, 1319, 4253, 1973, 4457, 3083, 31489, 1423, 63853, 10691, 27617, 10789, 65029, 97987, 1433, 198647, 4751, 22271, 100669, 977, 33857, 204047, 34159, 9803, 103387, 3863, 209519, 1499, 71069, 215063, 35999, 24103, 1123, 3023, 74189, 74821, 1789, 226367, 1619, 1879, 76733, 33161, 8669, 117517, 8741, 237959, 5689, 79973, 5237, 80629, 243863, 509, 1487, 82613, 1091, 27983, 18061, 255887, 129469, 12379, 262007, 4871, 132547, 2063, 6361, 268199, 1951, 135661, 45569, 39209, 92189, 1093, 92893, 15541, 1237, 2237, 94309, 95021, 5419, 2089, 1531, 145219, 48767, 98621, 21211, 99349, 16619, 300239, 16741, 1381, 151771, 6529, 51329, 563, 3607, 34591, 13633, 105269, 1481, 5953, 161869, 108293, 6961, 7817, 36607, 3119, 55487, 168781, 112909, 341063, 19013, 5011, 58217, 4327, 175837, 1867, 59009, 3449, 59407, 1229, 3041, 2791, 8429, 121621, 183037, 5323, 61417, 52817, 41351, 8117, 62639, 2969, 9007, 1733, 3121, 384479, 2381, 18427, 2659, 65119, 391967, 65537, 44111, 66377, 399527, 5827, 201667, 19267, 22549, 22691, 136573, 2309, 2593, 1613, 15461, 209371, 70223, 70657, 6163, 430487, 2447, 217219, 145253, 7187, 7001, 221197, 74177, 446399, 74623, 1399, 32173, 150589, 2797, 1373, 152389, 229261, 76873, 20113, 1459, 233347, 11177, 10949, 78697, 3671, 3253, 26539, 26693, 160621, 2213, 21193, 245821, 2029, 3583, 1429, 23747, 250051, 167173, 27941, 504359, 28099, 169069, 170021, 512927, 1453, 2417, 8233, 3769, 521567, 174821, 262957, 7643, 530279, 1997, 6217, 89599, 90089, 60223, 1493, 3061, 3907, 276187, 30853, 6709, 31019, 12203, 94057, 94559, 2341, 5927, 4099, 289741, 32363, 584063, 32533, 195709, 1741, 3929, 99137, 1549, 100169, 201893, 303619, 202933, 611927, 3361, 308317, 206069, 1949, 621359, 104879, 630863, 4583, 211349, 45403, 35491, 10499, 2083, 322627, 30803, 108079, 4363, 2311, 24197, 327469, 24317, 15671, 5839, 4793, 221021, 222109, 4159, 337261, 679463, 16217, 342211, 76231, 3037, 32987, 347197, 3463, 12983, 4441, 9719, 118529, 5857, 11369, 119657, 719639, 120223, 241013, 362371, 5779, 244429, 367501, 5711, 5351, 2459, 2027, 27541, 372667, 124799, 3557, 17911, 1979, 2111, 2837, 42179, 3323, 42373, 383107, 255989, 128287, 4733, 128873, 86111, 3761, 2767, 7309, 130639, 1999, 17117, 37579, 14713, 7529, 4519, 19087, 803447, 134207, 89671, 404419, 90071, 3163, 272621, 6563, 12011, 3343, 836063, 1913, 420781, 31237, 847079, 937, 4649, 60901, 858167, 47779, 12491, 431869, 144577, 2017, 97007, 437467, 97423, 20921, 880559, 147073, 294773, 1987, 16481, 2963, 4357, 6379, 150223, 4729, 7703, 101207, 39769, 152767, 5171, 5801, 51349, 4799, 51563, 310021, 66571, 2557, 13997, 156623, 34877, 5003, 2357, 41281, 317789, 10163, 319093, 6451, 321709, 7927, 161839, 3779, 11383, 108991, 16693, 23497, 2917, 2153, 47659, 14563, 167809, 1008863, 112543, 72493, 169823, 1020959, 170497, 5791, 9689, 49003, 57283, 1033127, 345733, 519619, 15091, 24841, 1045367, 174569, 22859, 13007, 175937, 2477, 8231, 2521,

7. Distribution of the primes

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

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)
11010371.0000000.3000001.0000000.0000000.0000000.000000
21007913660.7900000.1300000.7900007.9000004.3333339.428572
31.000697686290.6970000.0680000.6970008.8227845.2307699.530303
410.0006.8884856.4030.6888000.0485000.6888009.8823537.13235310.179650
5100.00068.9193.74365.1760.6891900.0374300.68919010.0056627.71752610.178979
61.000.000690.52430.437660.0870.6905240.0304370.69052410.0193568.13171310.127762
710.000.0006.907.692256.1866.651.5060.6907690.0256190.69076910.0035518.41692610.076711
8100.000.00069.092.3642.218.16366.874.2010.6909240.0221820.69092410.0022368.65840810.053994
91.000.000.000691.045.00719.582.683671.462.3240.6910450.0195830.69104510.0017568.82833410.040678
1010.000.000.0006.911.852.843175.259.1886.736.593.6550.6911850.0175260.69118510.0020308.94970210.032720


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
388351.0000000.3750000.6250001.6000001.5000001.666667
416154110.9375000.2500000.6875001.8750001.3333332.200000
532286220.8750000.1875000.6875001.8666671.5000002.000000
6645610460.8750000.1562500.7187502.0000001.6666672.090909
71289915840.7734380.1171880.6562501.7678571.5000001.826087
8256188231650.7343750.0898440.6445311.8989901.5333331.964286
9512360423180.7031250.0820310.6210941.9148941.8260871.927273
101.024712706420.6953120.0683590.6269531.9777781.6666672.018868
112.0481.4211211.3000.6938480.0590820.6347661.9957871.7285712.024922
124.0962.8212312.5900.6887210.0563960.6323241.9852221.9090911.992308
138.1925.6284055.2230.6870120.0494380.6375731.9950371.7532472.016602
1416.38411.26376010.5030.6874390.0463870.6410522.0012441.8765432.010913
1532.76822.5651.39721.1680.6886290.0426330.6459962.0034631.8381582.015424
1665.53645.1392.54442.5950.6887660.0388180.6499482.0003991.8210452.012235
17131.07290.3774.73985.6380.6895220.0361560.6533662.0021931.8628142.010518
18262.144180.8528.980171.8720.6898960.0342560.6556402.0010841.8949152.006959
19524.288362.07516.848345.2270.6906030.0321350.6584682.0020511.8761692.008629
201.048.576724.09731.773692.3240.6905530.0303010.6602521.9998541.8858622.005417
212.097.1521.448.40760.1801.388.2270.6906540.0286960.6619582.0002941.8940612.005170
224.194.3042.896.859114.0482.782.8110.6906650.0271910.6634742.0000311.8951152.004579
238.388.6085.794.430217.4955.576.9350.6907500.0259270.6648222.0002461.9070482.004065
2416.777.21611.590.192415.44211.174.7500.6908290.0247620.6660672.0002301.9101222.003744
2533.554.43223.181.602794.95622.386.6460.6908660.0236920.6671742.0001051.9135192.003324
2667.108.86446.364.5681.524.43144.840.1370.6908860.0227160.6681702.0000591.9176292.002986
27134.217.72892.736.8472.927.74489.809.1030.6909430.0218130.6691302.0001661.9205492.002873
28268.435.456185.484.3225.633.491179.850.8310.6909830.0209860.6699972.0001151.9241752.002590
29536.870.912370.987.79010.855.980360.131.8100.6910190.0202210.6707982.0001031.9270432.002392
301.073.741.824742.007.27620.950.870721.056.4060.6910480.0195120.6715362.0000861.9298922.002201
312.147.483.6481.484.120.04140.474.6311.443.645.4100.6910970.0188470.6722502.0001421.9318832.002126
324.294.967.2962.968.390.52278.290.5582.890.099.9640.6911320.0182280.6729042.0001011.9343122.001946
338.589.934.5925.937.156.424151.596.2155.785.560.2090.6911760.0176480.6735282.0001271.9363282.001855
3417.179.869.18411.875.004.651293.828.36111.581.176.2900.6912160.0171030.6741132.0001161.9382302.001738


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
122101001
242101001
383111002
4164121003
5326141005
66410171009
71281511210014
82562312010022
95124213910041
101.0247016710069
112.0481211118100120
124.0962311228100230
138.1924051402100404
1416.3847601757100759
1532.7681.39711.3941001.396
1665.5362.54412.5411002.543
17131.0724.73914.7361004.738
18262.1448.98018.9771008.979
19524.28816.848116.84510016.847
201.048.57631.773131.77010031.772
212.097.15260.180160.17710060.179
224.194.304114.0481114.045100114.047
238.388.608217.4951217.492100217.494
2416.777.216415.4421415.439100415.441
2533.554.432794.9561794.953100794.955
2667.108.8641.524.43111.524.4281001.524.430
27134.217.7282.927.74412.927.7411002.927.743
28268.435.4565.633.49115.633.4881005.633.490
29536.870.91210.855.980110.855.97710010.855.979
301.073.741.82420.950.870120.950.86710020.950.869
312.147.483.64840.474.631140.474.62810040.474.630
324.294.967.29678.290.558178.290.55510078.290.557
338.589.934.592151.596.2151151.596.212100151.596.214
3417.179.869.184293.828.3611293.828.358100293.828.360


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
121000100
243110201
385130212
41611550542
5322212926104
6644627188101711
712884503313183023
82561651006430355941
9512318173144616811574
101.024642360281130145222145
112.0481.300701598275295434296
124.0962.5901.3751.214577565833615
138.1925.2232.7912.4311.1381.1731.6711.241
1416.38410.5035.6224.8802.3452.3353.2932.530
1532.76821.16811.2199.9484.7864.7776.5455.060
1665.53642.59522.53420.0609.7959.65512.89310.252
17131.07285.63845.15740.48019.79019.53825.57720.733
18262.144171.87290.38081.49139.85739.75250.72041.543
19524.288345.227181.004164.22280.43080.122100.84283.833
201.048.576692.324362.080330.243161.830161.166200.835168.493
212.097.1521.388.227724.624663.602325.740324.748399.124338.615
224.194.3042.782.8111.449.7251.333.085655.032653.904793.902679.973
238.388.6085.576.9352.899.9742.676.9601.317.3551.315.0201.581.5941.362.966
2416.777.21611.174.7505.802.1135.372.6362.646.3832.644.7223.151.0752.732.570
2533.554.43222.386.64611.603.30510.783.3405.316.1815.310.4536.280.2125.479.800
2667.108.86444.840.13723.204.48921.635.64710.672.25110.661.80812.518.92110.987.157
27134.217.72889.809.10346.404.68443.404.41821.420.54021.399.82024.969.17622.019.567
28268.435.456179.850.83192.803.19987.047.63142.976.33142.939.19149.804.70844.130.601
29536.870.912360.131.810185.600.746174.531.06386.215.13186.141.24399.350.53488.424.902
301.073.741.824721.056.406371.189.164349.867.241172.905.328172.761.715198.234.212177.155.151
312.147.483.6481.443.645.410742.437.957701.207.452346.702.145346.438.528395.629.488354.875.249
324.294.967.2962.890.099.9641.484.873.3931.405.226.570695.063.076694.544.807789.636.446710.855.635
338.589.934.5925.785.560.2092.969.885.5592.815.674.6491.393.246.6501.392.202.1101.576.299.0181.423.812.431
3417.179.869.18411.581.176.2905.939.980.9315.641.195.3582.792.269.9722.790.432.3593.146.959.3362.851.514.623


8. Check for existing Integer Sequences by OEIS

Found in Database : 73, 3, 7, 67, 23, 47, 359, 1, 173, 43, 229, 1, 863, 53, 349, 571, 59, 223, 1439, 257,
Found in Database : 73, 3, 7, 67, 23, 47, 359, 173, 43, 229, 863, 53, 349, 571, 59, 223, 1439, 257, 61, 877, 2087, 367, 773, 853, 149, 401, 163, 1021, 1597, 1109, 577, 89, 431, 2011,
Found in Database : 3, 7, 23, 43, 47, 53, 59, 61, 67, 73, 83, 89, 97, 103, 107, 113, 127, 131, 149,