Inhaltsverzeichnis

Development of
Algorithmic Constructions

04:05:02
Deutsch
20.Apr 2024

Polynom = x^2+21x+11

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) = 11 = 11
f(1) = 33 = 3*11
f(2) = 57 = 3*19
f(3) = 83 = 83
f(4) = 111 = 3*37
f(5) = 141 = 3*47
f(6) = 173 = 173
f(7) = 207 = 3*3*23
f(8) = 243 = 3*3*3*3*3
f(9) = 281 = 281
f(10) = 321 = 3*107
f(11) = 363 = 3*11*11
f(12) = 407 = 11*37
f(13) = 453 = 3*151
f(14) = 501 = 3*167
f(15) = 551 = 19*29
f(16) = 603 = 3*3*67
f(17) = 657 = 3*3*73
f(18) = 713 = 23*31
f(19) = 771 = 3*257
f(20) = 831 = 3*277
f(21) = 893 = 19*47
f(22) = 957 = 3*11*29
f(23) = 1023 = 3*11*31
f(24) = 1091 = 1091
f(25) = 1161 = 3*3*3*43
f(26) = 1233 = 3*3*137
f(27) = 1307 = 1307
f(28) = 1383 = 3*461
f(29) = 1461 = 3*487
f(30) = 1541 = 23*67
f(31) = 1623 = 3*541
f(32) = 1707 = 3*569
f(33) = 1793 = 11*163
f(34) = 1881 = 3*3*11*19
f(35) = 1971 = 3*3*3*73
f(36) = 2063 = 2063
f(37) = 2157 = 3*719
f(38) = 2253 = 3*751
f(39) = 2351 = 2351
f(40) = 2451 = 3*19*43
f(41) = 2553 = 3*23*37
f(42) = 2657 = 2657
f(43) = 2763 = 3*3*307
f(44) = 2871 = 3*3*11*29
f(45) = 2981 = 11*271
f(46) = 3093 = 3*1031
f(47) = 3207 = 3*1069
f(48) = 3323 = 3323
f(49) = 3441 = 3*31*37
f(50) = 3561 = 3*1187
f(51) = 3683 = 29*127
f(52) = 3807 = 3*3*3*3*47
f(53) = 3933 = 3*3*19*23
f(54) = 4061 = 31*131
f(55) = 4191 = 3*11*127
f(56) = 4323 = 3*11*131
f(57) = 4457 = 4457
f(58) = 4593 = 3*1531
f(59) = 4731 = 3*19*83
f(60) = 4871 = 4871
f(61) = 5013 = 3*3*557
f(62) = 5157 = 3*3*3*191
f(63) = 5303 = 5303
f(64) = 5451 = 3*23*79
f(65) = 5601 = 3*1867
f(66) = 5753 = 11*523
f(67) = 5907 = 3*11*179
f(68) = 6063 = 3*43*47
f(69) = 6221 = 6221
f(70) = 6381 = 3*3*709
f(71) = 6543 = 3*3*727
f(72) = 6707 = 19*353
f(73) = 6873 = 3*29*79
f(74) = 7041 = 3*2347
f(75) = 7211 = 7211
f(76) = 7383 = 3*23*107
f(77) = 7557 = 3*11*229
f(78) = 7733 = 11*19*37
f(79) = 7911 = 3*3*3*293
f(80) = 8091 = 3*3*29*31
f(81) = 8273 = 8273
f(82) = 8457 = 3*2819
f(83) = 8643 = 3*43*67
f(84) = 8831 = 8831
f(85) = 9021 = 3*31*97
f(86) = 9213 = 3*37*83
f(87) = 9407 = 23*409
f(88) = 9603 = 3*3*11*97
f(89) = 9801 = 3*3*3*3*11*11
f(90) = 10001 = 73*137
f(91) = 10203 = 3*19*179
f(92) = 10407 = 3*3469
f(93) = 10613 = 10613
f(94) = 10821 = 3*3607
f(95) = 11031 = 3*3677
f(96) = 11243 = 11243
f(97) = 11457 = 3*3*19*67
f(98) = 11673 = 3*3*1297
f(99) = 11891 = 11*23*47
f(100) = 12111 = 3*11*367

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+21x+11

f(0)=11
f(1)=3
f(2)=19
f(3)=83
f(4)=37
f(5)=47
f(6)=173
f(7)=23
f(8)=1
f(9)=281
f(10)=107
f(11)=1
f(12)=1
f(13)=151
f(14)=167
f(15)=29
f(16)=67
f(17)=73
f(18)=31
f(19)=257
f(20)=277
f(21)=1
f(22)=1
f(23)=1
f(24)=1091
f(25)=43
f(26)=137
f(27)=1307
f(28)=461
f(29)=487
f(30)=1
f(31)=541
f(32)=569
f(33)=163
f(34)=1
f(35)=1
f(36)=2063
f(37)=719
f(38)=751
f(39)=2351
f(40)=1
f(41)=1
f(42)=2657
f(43)=307
f(44)=1
f(45)=271
f(46)=1031
f(47)=1069
f(48)=3323
f(49)=1
f(50)=1187
f(51)=127
f(52)=1
f(53)=1
f(54)=131
f(55)=1
f(56)=1
f(57)=4457
f(58)=1531
f(59)=1
f(60)=4871
f(61)=557
f(62)=191
f(63)=5303
f(64)=79
f(65)=1867
f(66)=523
f(67)=179
f(68)=1
f(69)=6221
f(70)=709
f(71)=727
f(72)=353
f(73)=1
f(74)=2347
f(75)=7211
f(76)=1
f(77)=229
f(78)=1
f(79)=293
f(80)=1
f(81)=8273
f(82)=2819
f(83)=1
f(84)=8831
f(85)=97
f(86)=1
f(87)=409
f(88)=1
f(89)=1
f(90)=1
f(91)=1
f(92)=3469
f(93)=10613
f(94)=3607
f(95)=3677
f(96)=11243
f(97)=1
f(98)=1297
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2+21x+11 could be written as f(y)= y^2-99.25 with x=y-10.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+10.5
f'(x)>2x+20

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

11, 3, 19, 83, 37, 47, 173, 23, 1, 281, 107, 1, 1, 151, 167, 29, 67, 73, 31, 257, 277, 1, 1, 1, 1091, 43, 137, 1307, 461, 487, 1, 541, 569, 163, 1, 1, 2063, 719, 751, 2351, 1, 1, 2657, 307, 1, 271, 1031, 1069, 3323, 1, 1187, 127, 1, 1, 131, 1, 1, 4457, 1531, 1, 4871, 557, 191, 5303, 79, 1867, 523, 179, 1, 6221, 709, 727, 353, 1, 2347, 7211, 1, 229, 1, 293, 1, 8273, 2819, 1, 8831, 97, 1, 409, 1, 1, 1, 1, 3469, 10613, 3607, 3677, 11243, 1, 1297, 1, 367, 4111, 433, 4261, 4337, 13241, 499, 1523, 1, 1, 1, 1, 4969, 5051, 15401, 1, 1, 1, 5471, 5557, 16931, 521, 1, 479, 1999, 2029, 431, 6269, 6361, 1019, 6547, 1, 1, 1, 2309, 1109, 7121, 7219, 757, 7417, 7517, 22853, 1, 1, 2161, 349, 1, 797, 439, 8447, 383, 2887, 1, 26633, 1, 827, 1201, 9319, 9431, 28631, 1, 3257, 631, 1, 1, 2791, 941, 1, 1381, 1, 401, 32843, 11069, 1, 33941, 11437, 1051, 3187, 1, 1, 36191, 1, 1, 1, 12577, 1, 2027, 1, 397, 1, 13367, 587, 2153, 1, 13907, 42131, 1, 1, 3943, 1327, 14737, 44633, 653, 15161, 1481, 1, 5197, 47207, 15881, 1, 1, 859, 1, 49853, 1, 5639, 51203, 1, 599, 52571, 1607, 1621, 683, 6047, 1, 1, 503, 1, 56783, 19087, 1013, 1, 593, 6577, 1613, 647, 1, 2659, 20551, 20717, 1, 2339, 643, 1, 21557, 21727, 1, 761, 967, 3539, 7529, 1, 829, 1, 1, 1637, 1, 23819, 71993, 8059, 1, 73613, 1301, 673, 6841, 2297, 821, 76907, 1, 8669, 1, 1, 1, 80273, 26947, 2467, 1, 9173, 3079, 863, 28097, 1489, 881, 1, 1, 87221, 887, 1, 89003, 29867, 1, 90803, 30469, 30671, 4027, 1151, 10427, 1, 1, 1, 1, 1, 1049, 2089, 10979, 1, 1, 33569, 1, 1, 1, 34421, 3583, 11617, 11689, 701, 1, 1553, 823, 1, 3307, 109793, 4091, 12347, 111791, 1973, 877, 1559, 1231, 1669, 10531, 1, 1447, 3803, 1, 1, 119963, 1087, 2129, 122051, 1, 1, 11287, 41621, 2203, 3413, 42331, 42569, 769, 4783, 1, 1949, 1, 4001, 132761, 44497, 44741, 7103, 15077, 1, 1, 45971, 46219, 1, 1, 1, 141653, 15823, 15907, 3347, 1663, 48481, 1, 48991, 1, 1, 1, 16673, 150833, 1, 1, 3259, 1, 51581, 3617, 1579, 1, 157907, 52901, 1, 5171, 1, 1861, 162713, 18169, 1, 15013, 1, 2417, 5779, 1, 2969, 170057, 6329, 19079, 172541, 57791, 5279, 15913, 2549, 58907, 4799, 1, 2213, 9479, 60317, 60601, 182657, 1, 1, 9749, 1, 20773, 187823, 62897, 1, 6143, 1483, 1, 17551, 1, 21647, 1, 3449, 65827, 1217, 1, 1, 1879, 1181, 1, 18523, 68219, 68521, 1, 69127, 69431, 1597, 1, 1, 7309, 6451, 1, 214733, 71887, 1, 5879, 1, 1283, 2789, 73757, 74071, 20287, 6791, 75017, 226001, 1, 1, 2897, 76607, 1789, 12197, 77569, 1, 1, 1, 1, 12503, 3457, 2753, 240491, 80491, 80819, 7853, 1, 1, 1, 82469, 2671, 1, 1, 1783, 1459, 1, 1, 2111, 1, 85819, 6011, 1291, 86837, 1, 29173, 29287, 2473, 88547, 8081, 24337, 3089, 4733, 270821, 10069, 30323, 1, 2957, 1, 1, 8429, 8461, 9041, 31259, 10459, 1, 94841, 4139, 1657, 95911, 96269, 1, 2939, 1, 293123, 1, 1, 1, 1, 4327, 10333, 1, 3049, 27541, 2357, 101719, 306263, 3533, 1, 4241, 1, 11549, 312941, 1, 9551, 4721, 5569, 106187, 319691, 1, 1, 323093, 1, 108457, 29683, 9929, 1, 329951, 12263, 1, 9011, 111521, 2381, 1, 1, 1, 1, 1, 4231, 11093, 115019, 1, 347411, 1, 3761, 15259, 3557, 1, 1, 118571, 1, 358103, 1, 120167, 19037, 13441, 1759, 33211, 1, 3313, 368957, 1, 2879, 372611, 1, 1, 376283, 1, 1, 34543, 4099, 127481, 383681, 2251, 1, 12497, 1, 129967, 391151, 1, 1, 1, 1, 44159, 398693, 133319, 7039, 13879, 134587, 1709, 1, 1, 1, 410141, 4729, 2927, 1, 138427, 1, 417863, 46573, 1, 1667, 1699, 3823, 1, 4591, 142757, 429581, 15959, 48023, 22817, 13177, 13217, 1, 1367, 5059, 441461, 49199, 5483, 1451, 148931, 149377, 1409, 1, 6553, 9649, 50539, 1, 457553, 1, 153421, 14891, 1, 14071, 42337, 17299, 1, 469811, 157061, 157519, 12809, 3371, 8363, 2503, 1, 1619, 482231, 1, 1, 486407, 162601, 5623, 3863, 54667, 1, 44983, 1, 165877, 6317, 7253, 1, 26489, 1, 56237, 507557, 169661, 15467, 1, 171091, 4637, 22441, 1, 1, 1, 173969, 4057, 524801, 1, 15991, 529157, 1, 59119, 23197, 1, 178819, 6481, 9463, 180287, 1, 1831, 1, 1, 182747, 1, 551207, 184231, 184727, 555671, 1997, 1, 50923, 187217, 6473, 564653, 188719, 1, 15383, 63409, 63577, 1, 17431, 17477, 6967, 193261, 5237, 8699, 1, 65099, 1, 4177, 196831, 1, 17987, 1, 1, 66467, 1, 8237, 8737, 1, 4013, 6983, 18457, 1, 68023, 1, 615341, 1, 7109, 26959, 1, 1, 624791, 1, 6343, 3517, 2663, 210907, 634313, 211969, 212501, 1, 1, 23789, 58537, 1, 11353, 648731, 216781, 217319, 1, 1693, 1, 658433, 220019, 20051, 1, 7643, 2677, 3733, 24809, 74609, 673121, 224921, 9803, 1, 1, 1877, 683003, 1, 1, 36209, 1, 230431, 692957, 10067, 7487, 1, 1, 2687, 702983, 7577, 235447, 708023, 12451, 2857, 1, 1, 7237, 65287, 1, 240517, 5521, 241651, 1, 2087, 81119, 27103, 31891, 22279, 1, 4423, 246787, 1, 2647, 82837, 1, 1, 8629, 1, 1, 22907, 8147, 7829, 9397, 1, 7883, 255467, 2393, 16381, 257221, 1, 3709, 1, 1, 1, 260747, 261337, 41357, 262519, 263111, 791111, 8009, 1, 1, 266081, 266677, 1, 8641, 4007, 807203, 1, 90089, 2383, 1, 3727, 818021, 1, 273881, 823457, 1951, 10211, 1, 4133, 25229, 75853, 12119, 1, 839873, 93523, 4933, 845381, 282407, 3877, 6211, 25841, 1, 1, 1, 3083, 862013, 1907, 288577, 29917, 9349, 290441, 1, 8839, 32479, 2011, 6827, 7951, 884441, 295441, 2767, 1, 99109, 9029, 1, 8087, 13037, 901451, 2371, 301751, 11483, 1, 1, 19423, 1, 27779, 29633, 306847, 1, 924383, 5417, 1, 13883, 310697, 311341, 85087, 1, 1, 941771, 1, 1, 947603, 1, 16693, 1, 1, 1, 87211, 35603, 1, 1, 1, 8731, 971111, 324361, 325019, 2551, 1, 1, 982973, 1, 328981, 1, 2411, 1, 994907, 1, 110989, 4789, 30391, 7127, 4397, 336307, 336977, 44041, 37591, 112997, 12277,

6. Sequence of the polynom (only primes)

11, 3, 19, 83, 37, 47, 173, 23, 281, 107, 151, 167, 29, 67, 73, 31, 257, 277, 1091, 43, 137, 1307, 461, 487, 541, 569, 163, 2063, 719, 751, 2351, 2657, 307, 271, 1031, 1069, 3323, 1187, 127, 131, 4457, 1531, 4871, 557, 191, 5303, 79, 1867, 523, 179, 6221, 709, 727, 353, 2347, 7211, 229, 293, 8273, 2819, 8831, 97, 409, 3469, 10613, 3607, 3677, 11243, 1297, 367, 4111, 433, 4261, 4337, 13241, 499, 1523, 4969, 5051, 15401, 5471, 5557, 16931, 521, 479, 1999, 2029, 431, 6269, 6361, 1019, 6547, 2309, 1109, 7121, 7219, 757, 7417, 7517, 22853, 2161, 349, 797, 439, 8447, 383, 2887, 26633, 827, 1201, 9319, 9431, 28631, 3257, 631, 2791, 941, 1381, 401, 32843, 11069, 33941, 11437, 1051, 3187, 36191, 12577, 2027, 397, 13367, 587, 2153, 13907, 42131, 3943, 1327, 14737, 44633, 653, 15161, 1481, 5197, 47207, 15881, 859, 49853, 5639, 51203, 599, 52571, 1607, 1621, 683, 6047, 503, 56783, 19087, 1013, 593, 6577, 1613, 647, 2659, 20551, 20717, 2339, 643, 21557, 21727, 761, 967, 3539, 7529, 829, 1637, 23819, 71993, 8059, 73613, 1301, 673, 6841, 2297, 821, 76907, 8669, 80273, 26947, 2467, 9173, 3079, 863, 28097, 1489, 881, 87221, 887, 89003, 29867, 90803, 30469, 30671, 4027, 1151, 10427, 1049, 2089, 10979, 33569, 34421, 3583, 11617, 11689, 701, 1553, 823, 3307, 109793, 4091, 12347, 111791, 1973, 877, 1559, 1231, 1669, 10531, 1447, 3803, 119963, 1087, 2129, 122051, 11287, 41621, 2203, 3413, 42331, 42569, 769, 4783, 1949, 4001, 132761, 44497, 44741, 7103, 15077, 45971, 46219, 141653, 15823, 15907, 3347, 1663, 48481, 48991, 16673, 150833, 3259, 51581, 3617, 1579, 157907, 52901, 5171, 1861, 162713, 18169, 15013, 2417, 5779, 2969, 170057, 6329, 19079, 172541, 57791, 5279, 15913, 2549, 58907, 4799, 2213, 9479, 60317, 60601, 182657, 9749, 20773, 187823, 62897, 6143, 1483, 17551, 21647, 3449, 65827, 1217, 1879, 1181, 18523, 68219, 68521, 69127, 69431, 1597, 7309, 6451, 214733, 71887, 5879, 1283, 2789, 73757, 74071, 20287, 6791, 75017, 226001, 2897, 76607, 1789, 12197, 77569, 12503, 3457, 2753, 240491, 80491, 80819, 7853, 82469, 2671, 1783, 1459, 2111, 85819, 6011, 1291, 86837, 29173, 29287, 2473, 88547, 8081, 24337, 3089, 4733, 270821, 10069, 30323, 2957, 8429, 8461, 9041, 31259, 10459, 94841, 4139, 1657, 95911, 96269, 2939, 293123, 4327, 10333, 3049, 27541, 2357, 101719, 306263, 3533, 4241, 11549, 312941, 9551, 4721, 5569, 106187, 319691, 323093, 108457, 29683, 9929, 329951, 12263, 9011, 111521, 2381, 4231, 11093, 115019, 347411, 3761, 15259, 3557, 118571, 358103, 120167, 19037, 13441, 1759, 33211, 3313, 368957, 2879, 372611, 376283, 34543, 4099, 127481, 383681, 2251, 12497, 129967, 391151, 44159, 398693, 133319, 7039, 13879, 134587, 1709, 410141, 4729, 2927, 138427, 417863, 46573, 1667, 1699, 3823, 4591, 142757, 429581, 15959, 48023, 22817, 13177, 13217, 1367, 5059, 441461, 49199, 5483, 1451, 148931, 149377, 1409, 6553, 9649, 50539, 457553, 153421, 14891, 14071, 42337, 17299, 469811, 157061, 157519, 12809, 3371, 8363, 2503, 1619, 482231, 486407, 162601, 5623, 3863, 54667, 44983, 165877, 6317, 7253, 26489, 56237, 507557, 169661, 15467, 171091, 4637, 22441, 173969, 4057, 524801, 15991, 529157, 59119, 23197, 178819, 6481, 9463, 180287, 1831, 182747, 551207, 184231, 184727, 555671, 1997, 50923, 187217, 6473, 564653, 188719, 15383, 63409, 63577, 17431, 17477, 6967, 193261, 5237, 8699, 65099, 4177, 196831, 17987, 66467, 8237, 8737, 4013, 6983, 18457, 68023, 615341, 7109, 26959, 624791, 6343, 3517, 2663, 210907, 634313, 211969, 212501, 23789, 58537, 11353, 648731, 216781, 217319, 1693, 658433, 220019, 20051, 7643, 2677, 3733, 24809, 74609, 673121, 224921, 9803, 1877, 683003, 36209, 230431, 692957, 10067, 7487, 2687, 702983, 7577, 235447, 708023, 12451, 2857, 7237, 65287, 240517, 5521, 241651, 2087, 81119, 27103, 31891, 22279, 4423, 246787, 2647, 82837, 8629, 22907, 8147, 7829, 9397, 7883, 255467, 2393, 16381, 257221, 3709, 260747, 261337, 41357, 262519, 263111, 791111, 8009, 266081, 266677, 8641, 4007, 807203, 90089, 2383, 3727, 818021, 273881, 823457, 1951, 10211, 4133, 25229, 75853, 12119, 839873, 93523, 4933, 845381, 282407, 3877, 6211, 25841, 3083, 862013, 1907, 288577, 29917, 9349, 290441, 8839, 32479, 2011, 6827, 7951, 884441, 295441, 2767, 99109, 9029, 8087, 13037, 901451, 2371, 301751, 11483, 19423, 27779, 29633, 306847, 924383, 5417, 13883, 310697, 311341, 85087, 941771, 947603, 16693, 87211, 35603, 8731, 971111, 324361, 325019, 2551, 982973, 328981, 2411, 994907, 110989, 4789, 30391, 7127, 4397, 336307, 336977, 44041, 37591, 112997, 12277,

7. Distribution of the primes

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

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)
11010461.0000000.4000000.6000000.0000000.0000000.000000
21006519460.6500000.1900000.4600006.5000004.7500007.666667
31.0006821135690.6820000.1130000.56900010.4923085.94736912.369565
410.0006.8608006.0600.6860000.0800000.60600010.0586517.07964610.650264
5100.00068.7446.24162.5030.6874400.0624100.62503010.0209917.80125010.314027
61.000.000688.72350.716638.0070.6887230.0507160.63800710.0186638.12626210.207622
710.000.0006.893.174429.1026.464.0720.6893170.0429100.64640710.0086318.46088010.131663
8100.000.00068.964.2483.715.28365.248.9650.6896420.0371530.65249010.0047168.65827510.094096
91.000.000.000689.937.31532.778.824657.158.4910.6899370.0327790.65715810.0042758.82270010.071554
1010.000.000.0006.901.791.160293.324.1496.608.467.0110.6901790.0293320.66084710.0035058.94858710.056124


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)
123121.5000000.5000001.0000000.0000000.0000000.000000
245231.2500000.5000000.7500001.6666672.0000001.500000
388351.0000000.3750000.6250001.6000001.5000001.666667
41613490.8125000.2500000.5625001.6250001.3333331.800000
532236170.7187500.1875000.5312501.7692311.5000001.888889
6644313300.6718750.2031250.4687501.8695652.1666671.764706
71288522630.6640620.1718750.4921881.9767441.6923082.100000
8256170361340.6640620.1406250.5234382.0000001.6363642.126984
9512347602870.6777340.1171880.5605472.0411771.6666672.141791
101.0246951155800.6787110.1123050.5664062.0028821.9166672.020906
112.0481.4041911.2130.6855470.0932620.5922852.0201441.6608702.091379
124.0962.8193532.4660.6882320.0861820.6020512.0078351.8481682.032976
138.1925.6266724.9540.6867680.0820310.6047361.9957431.9036832.008921
1416.38411.2651.22310.0420.6875610.0746460.6129152.0023111.8199402.027049
1532.76822.4992.32220.1770.6866150.0708620.6157531.9972481.8986102.009261
1665.53645.0164.28540.7310.6868900.0653840.6215062.0008001.8453922.018685
17131.07290.1597.93682.2230.6878590.0605470.6273122.0028211.8520422.018684
18262.144180.40214.929165.4730.6881790.0569500.6312292.0009321.8811742.012491
19524.288360.96228.134332.8280.6884800.0536610.6348192.0008761.8845202.011374
201.048.576722.29752.981669.3160.6888360.0505270.6383092.0010331.8831662.010997
212.097.1521.444.871100.5481.344.3230.6889680.0479450.6410232.0003841.8978122.008503
224.194.3042.890.454191.2152.699.2390.6891380.0455890.6435492.0004931.9017292.007880
238.388.6085.782.122364.2425.417.8800.6892830.0434210.6458622.0004201.9048822.007188
2416.777.21611.565.667696.10910.869.5580.6893670.0414910.6478762.0002461.9111172.006238
2533.554.43223.135.8811.331.03021.804.8510.6895030.0396680.6498352.0003931.9121002.006048
2667.108.86446.277.2792.552.96943.724.3100.6895850.0380420.6515432.0002391.9180402.005256
27134.217.72892.569.7744.901.99087.667.7840.6896990.0365230.6531762.0003291.9201132.005012
28268.435.456185.161.9349.431.884175.730.0500.6897820.0351370.6546452.0002421.9240932.004500
29536.870.912370.366.03418.176.160352.189.8740.6898610.0338560.6560052.0002281.9270972.004153
301.073.741.824740.824.18635.069.079705.755.1070.6899460.0326610.6572862.0002491.9294002.003905
312.147.483.6481.481.822.64667.746.5521.414.076.0940.6900270.0315470.6584802.0002351.9318032.003635
324.294.967.2962.963.938.746131.038.9952.832.899.7510.6900960.0305100.6595862.0001981.9342532.003357
338.589.934.5925.928.471.454253.725.5475.674.745.9070.6901650.0295380.6606272.0002001.9362602.003158
3417.179.869.18411.858.073.984491.787.19611.366.286.7880.6902310.0286260.6616052.0001911.9382642.002959
3534.359.738.36823.718.383.203954.136.24722.764.246.9560.6902960.0277690.6625272.0001891.9401402.002787
3668.719.476.73647.441.043.5621.852.868.11045.588.175.4520.6903580.0269630.6633952.0001801.9419322.002622


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
242020200
383030210
4164041210
5326061410
664130133514
7128220226835
825636035812610
95126005917191212
101.024115011426322928
112.048191019048474749
124.096353035292829386
138.1926720671178159169166
1416.3841.22301.222327291300305
1532.7682.32202.321626570560566
1665.5364.28504.2841.1381.0461.0341.067
17131.0727.93607.9352.0541.9641.9481.970
18262.14414.929014.9283.8113.7003.6703.748
19524.28828.134028.1337.1137.0436.9187.060
201.048.57652.981052.98013.36413.19313.07413.350
212.097.152100.5480100.54725.25525.12424.94425.225
224.194.304191.2150191.21447.88647.90747.51247.910
238.388.608364.2420364.24191.12191.15890.74191.222
2416.777.216696.1090696.108174.217174.387173.520173.985
2533.554.4321.331.03001.331.029332.519332.999332.456333.056
2667.108.8642.552.96902.552.968637.680638.447638.532638.310
27134.217.7284.901.99004.901.9891.225.5611.224.9351.226.4201.225.074
28268.435.4569.431.88409.431.8832.357.9962.357.9552.358.4082.357.525
29536.870.91218.176.160018.176.1594.545.2514.543.7934.544.2844.542.832
301.073.741.82435.069.079035.069.0788.767.3028.769.5448.767.4188.764.815
312.147.483.64867.746.552067.746.55116.933.35916.942.88616.935.74516.934.562
324.294.967.296131.038.9950131.038.99432.757.86132.761.48432.762.88032.756.770
338.589.934.592253.725.5470253.725.54663.430.40163.426.03063.432.74463.436.372
3417.179.869.184491.787.1960491.787.195122.947.678122.947.781122.946.082122.945.655
3534.359.738.368954.136.2470954.136.246238.529.901238.541.192238.533.487238.531.667
3668.719.476.7361.852.868.11001.852.868.109463.219.519463.213.118463.204.401463.231.072


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
122100200
243200210
385220212
4169440414
53217884445
66430151449611
712863352712171519
8256134666728323440
951228713515167707179
101.024580283296135140145160
112.0481.213602610300308297308
124.0962.4661.2491.216633618598617
138.1924.9542.5082.4451.2371.2591.2121.246
1416.38410.0425.0784.9632.4972.5602.4772.508
1532.76820.17710.1819.9955.0715.0455.0834.978
1665.53640.73120.52320.20710.22410.21310.09910.195
17131.07282.22341.42640.79620.49220.60620.53920.586
18262.144165.47383.69881.77441.26041.24141.60741.365
19524.288332.828168.291164.53683.10483.15483.34283.228
201.048.576669.316338.163331.152166.902167.203167.639167.572
212.097.1521.344.323678.445665.877335.684335.732336.192336.715
224.194.3042.699.2391.362.1481.337.090674.166674.426674.859675.788
238.388.6085.417.8802.732.5622.685.3171.353.9791.354.3161.354.3481.355.237
2416.777.21610.869.5585.478.4605.391.0972.715.6612.718.4562.716.9622.718.479
2533.554.43221.804.85110.986.72010.818.1305.450.9635.451.5555.451.1355.451.198
2667.108.86443.724.31022.023.18021.701.12910.928.31310.934.23310.930.11310.931.651
27134.217.72887.667.78444.140.38043.527.40321.915.97421.919.26621.914.99821.917.546
28268.435.456175.730.05088.450.64787.279.40243.936.58743.939.84043.926.58543.927.038
29536.870.912352.189.874177.205.759174.984.11488.046.61388.063.93588.044.43888.034.888
301.073.741.824705.755.107355.019.245350.735.861176.439.154176.452.456176.443.363176.420.134
312.147.483.6481.414.076.094711.164.942702.911.151353.523.696353.524.305353.537.997353.490.096
324.294.967.2962.832.899.7511.424.427.8731.408.471.877708.245.413708.238.715708.225.708708.189.915
338.589.934.5925.674.745.9072.852.762.3112.821.983.5951.418.698.9881.418.655.7751.418.705.3481.418.685.796
3417.179.869.18411.366.286.7885.712.920.0795.653.366.7082.841.617.2392.841.573.7822.841.530.8002.841.564.967
3534.359.738.36822.764.246.95611.439.666.15711.324.580.7985.691.098.9915.691.024.8035.691.034.3345.691.088.828
3668.719.476.73645.588.175.45222.905.611.45122.682.564.00011.397.117.99911.397.118.13111.396.877.79011.397.061.532


8. Check for existing Integer Sequences by OEIS

Found in Database : 11, 3, 19, 83, 37, 47, 173, 23, 1, 281, 107, 1, 1, 151, 167, 29, 67, 73, 31, 257,
Found in Database : 11, 3, 19, 83, 37, 47, 173, 23, 281, 107, 151, 167, 29, 67, 73, 31, 257, 277, 1091, 43, 137, 1307, 461, 487, 541, 569, 163, 2063, 719, 751, 2351,
Found in Database : 3, 11, 19, 23, 29, 31, 37, 43, 47, 67, 73, 79, 83, 97, 107, 127, 131, 137,