Inhaltsverzeichnis

Development of
Algorithmic Constructions

08:36:43
Deutsch
18.Apr 2024

Polynom = x^2-40x-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) = 7 = 7
f(2) = 149 = 149
f(3) = 23 = 23
f(4) = 217 = 7*31
f(5) = 31 = 31
f(6) = 277 = 277
f(7) = 19 = 19
f(8) = 329 = 7*47
f(9) = 11 = 11
f(10) = 373 = 373
f(11) = 49 = 7*7
f(12) = 409 = 409
f(13) = 53 = 53
f(14) = 437 = 19*23
f(15) = 7 = 7
f(16) = 457 = 457
f(17) = 29 = 29
f(18) = 469 = 7*67
f(19) = 59 = 59
f(20) = 473 = 11*43
f(21) = 59 = 59
f(22) = 469 = 7*67
f(23) = 29 = 29
f(24) = 457 = 457
f(25) = 7 = 7
f(26) = 437 = 19*23
f(27) = 53 = 53
f(28) = 409 = 409
f(29) = 49 = 7*7
f(30) = 373 = 373
f(31) = 11 = 11
f(32) = 329 = 7*47
f(33) = 19 = 19
f(34) = 277 = 277
f(35) = 31 = 31
f(36) = 217 = 7*31
f(37) = 23 = 23
f(38) = 149 = 149
f(39) = 7 = 7
f(40) = 73 = 73
f(41) = 1 = 1
f(42) = 11 = 11
f(43) = 7 = 7
f(44) = 103 = 103
f(45) = 19 = 19
f(46) = 203 = 7*29
f(47) = 1 = 1
f(48) = 311 = 311
f(49) = 23 = 23
f(50) = 427 = 7*61
f(51) = 61 = 61
f(52) = 551 = 19*29
f(53) = 77 = 7*11
f(54) = 683 = 683
f(55) = 47 = 47
f(56) = 823 = 823
f(57) = 7 = 7
f(58) = 971 = 971
f(59) = 131 = 131
f(60) = 1127 = 7*7*23
f(61) = 151 = 151
f(62) = 1291 = 1291
f(63) = 43 = 43
f(64) = 1463 = 7*11*19
f(65) = 97 = 97
f(66) = 1643 = 31*53
f(67) = 217 = 7*31
f(68) = 1831 = 1831
f(69) = 241 = 241
f(70) = 2027 = 2027
f(71) = 133 = 7*19
f(72) = 2231 = 23*97
f(73) = 73 = 73
f(74) = 2443 = 7*349
f(75) = 319 = 11*29
f(76) = 2663 = 2663
f(77) = 347 = 347
f(78) = 2891 = 7*7*59
f(79) = 47 = 47
f(80) = 3127 = 53*59
f(81) = 203 = 7*29
f(82) = 3371 = 3371
f(83) = 437 = 19*23
f(84) = 3623 = 3623
f(85) = 469 = 7*67
f(86) = 3883 = 11*353
f(87) = 251 = 251
f(88) = 4151 = 7*593
f(89) = 67 = 67
f(90) = 4427 = 19*233
f(91) = 571 = 571
f(92) = 4711 = 7*673
f(93) = 607 = 607
f(94) = 5003 = 5003
f(95) = 161 = 7*23
f(96) = 5303 = 5303
f(97) = 341 = 11*31
f(98) = 5611 = 31*181
f(99) = 721 = 7*103
f(100) = 5927 = 5927

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-40x-73

f(0)=73
f(1)=7
f(2)=149
f(3)=23
f(4)=31
f(5)=1
f(6)=277
f(7)=19
f(8)=47
f(9)=11
f(10)=373
f(11)=1
f(12)=409
f(13)=53
f(14)=1
f(15)=1
f(16)=457
f(17)=29
f(18)=67
f(19)=59
f(20)=43
f(21)=1
f(22)=1
f(23)=1
f(24)=1
f(25)=1
f(26)=1
f(27)=1
f(28)=1
f(29)=1
f(30)=1
f(31)=1
f(32)=1
f(33)=1
f(34)=1
f(35)=1
f(36)=1
f(37)=1
f(38)=1
f(39)=1
f(40)=1
f(41)=1
f(42)=1
f(43)=1
f(44)=103
f(45)=1
f(46)=1
f(47)=1
f(48)=311
f(49)=1
f(50)=61
f(51)=1
f(52)=1
f(53)=1
f(54)=683
f(55)=1
f(56)=823
f(57)=1
f(58)=971
f(59)=131
f(60)=1
f(61)=151
f(62)=1291
f(63)=1
f(64)=1
f(65)=97
f(66)=1
f(67)=1
f(68)=1831
f(69)=241
f(70)=2027
f(71)=1
f(72)=1
f(73)=1
f(74)=349
f(75)=1
f(76)=2663
f(77)=347
f(78)=1
f(79)=1
f(80)=1
f(81)=1
f(82)=3371
f(83)=1
f(84)=3623
f(85)=1
f(86)=353
f(87)=251
f(88)=593
f(89)=1
f(90)=233
f(91)=571
f(92)=673
f(93)=607
f(94)=5003
f(95)=1
f(96)=5303
f(97)=1
f(98)=181
f(99)=1

b) Substitution of the polynom
The polynom f(x)=x^2-40x-73 could be written as f(y)= y^2-473 with x=y+20

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-20
f'(x)>2x-41 with x > 22

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, 7, 149, 23, 31, 1, 277, 19, 47, 11, 373, 1, 409, 53, 1, 1, 457, 29, 67, 59, 43, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 103, 1, 1, 1, 311, 1, 61, 1, 1, 1, 683, 1, 823, 1, 971, 131, 1, 151, 1291, 1, 1, 97, 1, 1, 1831, 241, 2027, 1, 1, 1, 349, 1, 2663, 347, 1, 1, 1, 1, 3371, 1, 3623, 1, 353, 251, 593, 1, 233, 571, 673, 607, 5003, 1, 5303, 1, 181, 1, 5927, 761, 1, 401, 227, 211, 1, 887, 661, 1, 263, 1, 1, 1, 8363, 1069, 1249, 1117, 397, 1, 1361, 1, 9931, 1, 10343, 1319, 229, 1, 1, 1, 1, 1481, 12071, 1, 1789, 797, 12983, 1, 13451, 1, 733, 1, 14411, 1, 2129, 947, 1, 1, 2273, 1, 16427, 1, 1, 269, 17483, 317, 1, 2287, 379, 1, 617, 1213, 1, 1, 881, 367, 1097, 1321, 739, 1, 22027, 2791, 1, 1, 2113, 1, 487, 1511, 1289, 443, 25127, 3181, 25771, 1, 26423, 1, 1, 1, 27751, 3511, 1, 1, 677, 1, 29803, 3769, 1, 1, 1, 1973, 4561, 1009, 1, 4127, 1, 4219, 34123, 1, 34871, 2203, 1549, 643, 1, 4597, 5309, 2347, 1997, 599, 503, 1, 1, 1, 1301, 1, 41143, 1, 1447, 5297, 6113, 491, 43627, 2753, 6353, 1, 743, 1, 46183, 5827, 47051, 1, 4357, 3023, 1, 1, 2161, 6269, 7229, 3191, 51511, 1, 509, 601, 1721, 1, 2857, 1, 1, 1, 56171, 1, 8161, 1, 5281, 523, 59063, 1861, 619, 1, 61031, 7691, 8861, 977, 63031, 1, 1307, 8069, 65063, 1171, 1, 1, 3533, 1, 68171, 1, 1, 8719, 1049, 2213, 10193, 4493, 1, 1303, 1, 9257, 1223, 1, 75703, 2383, 10973, 1, 1, 9811, 1, 1, 1, 1, 7393, 1, 82471, 1483, 1, 1, 12113, 1, 1, 1, 1, 997, 4649, 1, 89527, 1, 90731, 1, 91943, 1, 13309, 5861, 8581, 2969, 719, 1, 1327, 1741, 98123, 1543, 1, 1, 1, 1151, 14561, 12821, 3559, 6491, 14929, 1, 3413, 1901, 4657, 709, 9857, 1, 109751, 1, 2267, 1, 1, 1, 16253, 1, 115127, 1, 116491, 1, 2741, 1, 119243, 937, 907, 7583, 122027, 1, 1, 1, 953, 1, 4073, 1, 127691, 2293, 129127, 16231, 811, 1, 1, 8297, 19069, 883, 134951, 2423, 1, 8573, 137911, 1, 1, 17519, 20129, 17707, 2687, 2237, 1, 9043, 145451, 1, 146983, 1, 7817, 1, 1, 2357, 21661, 19051, 153191, 1013, 22109, 4861, 1, 1, 157931, 19841, 2381, 1, 1, 1, 1, 1, 164363, 1877, 1031, 1, 167627, 1, 1, 10631, 2897, 3067, 172583, 1, 1, 1, 7649, 1381, 25373, 22307, 9437, 3217, 181003, 5683, 182711, 1, 4289, 1, 1, 1, 187883, 1, 1, 5953, 6599, 3433, 1, 24251, 194891, 1, 196663, 12347, 28349, 24917, 200231, 1, 1, 1153, 1, 1, 8941, 25819, 207463, 1, 1, 6569, 30161, 1, 1019, 26737, 30689, 1, 9421, 1, 218551, 1, 4159, 1, 222311, 1, 32029, 1759, 226103, 1, 32573, 28621, 7417, 1, 4933, 14551, 1, 1, 235723, 29587, 1787, 1297, 8263, 1, 34513, 15161, 1613, 1, 8467, 30817, 247531, 1, 1, 7829, 35933, 31567, 253543, 1, 3319, 1, 257591, 2309, 259627, 1051, 1, 4691, 263723, 16547, 1, 1, 4391, 1, 38561, 33871, 272011, 1, 274103, 1, 14537, 4951, 25301, 1, 1, 1, 4789, 8863, 1, 1553, 1231, 1, 1, 1, 1, 2609, 9461, 1187, 42209, 1951, 12941, 18671, 1, 2351, 27457, 5413, 6473, 38167, 10567, 1373, 308663, 1, 1931, 1, 313127, 3571, 45053, 1, 1, 1423, 319883, 40127, 1163, 1, 324427, 5087, 4243, 1, 10613, 41269, 1, 1433, 2239, 1, 5507, 1, 338251, 1, 340583, 42719, 48989, 10753, 345271, 1, 1, 1, 15217, 6271, 1, 1, 354743, 1, 357131, 1, 51361, 1, 1, 2837, 1, 1, 12647, 6571, 369191, 46301, 371627, 3329, 12899, 1, 1, 2053, 1, 47527, 54493, 11959, 1, 1, 386411, 1, 388903, 6967, 391403, 1, 8039, 1, 396427, 49711, 56993, 2633, 4139, 1, 13033, 1, 1607, 7283, 1, 1, 1, 1, 1, 1, 1, 52267, 7109, 1, 1, 13229, 22349, 3803, 427243, 53569, 61409, 53897, 432491, 1427, 5651, 1, 437771, 7841, 15187, 55219, 14293, 1, 6653, 27943, 1, 1, 6733, 2459, 1, 28447, 456503, 1, 24169, 57571, 1, 8273, 1, 14563, 2903, 29297, 1873, 58937, 1571, 59281, 25033, 4259, 478391, 1, 3673, 1, 1, 1, 2243, 1, 1, 1, 1, 61717, 45013, 8867, 497963, 1, 500791, 1, 6899, 63131, 72353, 63487, 3373, 1451, 3851, 1, 2441, 1, 517927, 64921, 17959, 4663, 5399, 16411, 1, 1, 1, 2141, 3307, 1, 535351, 4793, 538283, 1, 1, 1, 544171, 1, 1663, 2143, 23917, 68947, 11287, 1, 556043, 1, 50821, 1, 7699, 1, 1619, 3079, 4271, 35597, 1531, 1, 82013, 1, 18617, 10333, 9511, 1, 12409, 1, 1, 73477, 1, 1, 53857, 37123, 1, 1, 13921, 1, 26161, 75407, 604811, 2707, 20963, 3463, 87293, 1, 614183, 4051, 3041, 1, 1, 2777, 20117, 2521, 2999, 1, 629963, 2467, 1, 39671, 636331, 3467, 1, 80141, 1, 1, 33997, 5059, 9689, 11621, 1, 2819, 1, 1, 658871, 41281, 8599, 2861, 2099, 1, 1, 41893, 2677, 1, 1, 1, 1, 1, 1667, 1, 1, 42923, 1907, 12323, 1, 86677, 1, 6221, 63493, 10939, 3457, 87931, 705127, 1, 1, 22193, 24547, 1, 715243, 8147, 6977, 1, 722027, 45233, 3343, 1, 728843, 1723, 1, 3989, 1, 1, 17189, 2437, 3187, 13291, 746023, 1, 107069, 1, 1, 1, 108061, 94771, 759911, 1, 763403, 23911, 5147, 6863, 5881, 1, 1, 2063, 777451, 1, 1, 1, 13297, 1, 788071, 98731, 791627, 1, 2003, 49811, 2153, 100069, 1, 100517, 115133, 2657, 809527, 1811, 2549, 1, 816743, 1, 43177, 25693, 2221, 51613, 1, 103681, 1, 9467, 1, 1, 838583, 26263, 1, 15073, 845927, 105971, 2477, 1, 77573, 1, 5323, 107357, 18313, 1, 864427, 1867, 868151, 1, 871883, 9929, 1, 1, 879371, 27539, 1, 55313, 886891, 1, 46877, 1, 1, 1, 898231, 1, 128861, 1, 19273, 113467, 4481, 14243, 1, 1, 917291, 114901, 1, 1, 3517, 3049, 132689, 14543, 932683, 116827, 12163, 1, 4457, 1, 41057, 59141, 1, 1, 30713, 3847, 136573, 5443,

6. Sequence of the polynom (only primes)

73, 7, 149, 23, 31, 277, 19, 47, 11, 373, 409, 53, 457, 29, 67, 59, 43, 103, 311, 61, 683, 823, 971, 131, 151, 1291, 97, 1831, 241, 2027, 349, 2663, 347, 3371, 3623, 353, 251, 593, 233, 571, 673, 607, 5003, 5303, 181, 5927, 761, 401, 227, 211, 887, 661, 263, 8363, 1069, 1249, 1117, 397, 1361, 9931, 10343, 1319, 229, 1481, 12071, 1789, 797, 12983, 13451, 733, 14411, 2129, 947, 2273, 16427, 269, 17483, 317, 2287, 379, 617, 1213, 881, 367, 1097, 1321, 739, 22027, 2791, 2113, 487, 1511, 1289, 443, 25127, 3181, 25771, 26423, 27751, 3511, 677, 29803, 3769, 1973, 4561, 1009, 4127, 4219, 34123, 34871, 2203, 1549, 643, 4597, 5309, 2347, 1997, 599, 503, 1301, 41143, 1447, 5297, 6113, 491, 43627, 2753, 6353, 743, 46183, 5827, 47051, 4357, 3023, 2161, 6269, 7229, 3191, 51511, 509, 601, 1721, 2857, 56171, 8161, 5281, 523, 59063, 1861, 619, 61031, 7691, 8861, 977, 63031, 1307, 8069, 65063, 1171, 3533, 68171, 8719, 1049, 2213, 10193, 4493, 1303, 9257, 1223, 75703, 2383, 10973, 9811, 7393, 82471, 1483, 12113, 997, 4649, 89527, 90731, 91943, 13309, 5861, 8581, 2969, 719, 1327, 1741, 98123, 1543, 1151, 14561, 12821, 3559, 6491, 14929, 3413, 1901, 4657, 709, 9857, 109751, 2267, 16253, 115127, 116491, 2741, 119243, 937, 907, 7583, 122027, 953, 4073, 127691, 2293, 129127, 16231, 811, 8297, 19069, 883, 134951, 2423, 8573, 137911, 17519, 20129, 17707, 2687, 2237, 9043, 145451, 146983, 7817, 2357, 21661, 19051, 153191, 1013, 22109, 4861, 157931, 19841, 2381, 164363, 1877, 1031, 167627, 10631, 2897, 3067, 172583, 7649, 1381, 25373, 22307, 9437, 3217, 181003, 5683, 182711, 4289, 187883, 5953, 6599, 3433, 24251, 194891, 196663, 12347, 28349, 24917, 200231, 1153, 8941, 25819, 207463, 6569, 30161, 1019, 26737, 30689, 9421, 218551, 4159, 222311, 32029, 1759, 226103, 32573, 28621, 7417, 4933, 14551, 235723, 29587, 1787, 1297, 8263, 34513, 15161, 1613, 8467, 30817, 247531, 7829, 35933, 31567, 253543, 3319, 257591, 2309, 259627, 1051, 4691, 263723, 16547, 4391, 38561, 33871, 272011, 274103, 14537, 4951, 25301, 4789, 8863, 1553, 1231, 2609, 9461, 1187, 42209, 1951, 12941, 18671, 2351, 27457, 5413, 6473, 38167, 10567, 1373, 308663, 1931, 313127, 3571, 45053, 1423, 319883, 40127, 1163, 324427, 5087, 4243, 10613, 41269, 1433, 2239, 5507, 338251, 340583, 42719, 48989, 10753, 345271, 15217, 6271, 354743, 357131, 51361, 2837, 12647, 6571, 369191, 46301, 371627, 3329, 12899, 2053, 47527, 54493, 11959, 386411, 388903, 6967, 391403, 8039, 396427, 49711, 56993, 2633, 4139, 13033, 1607, 7283, 52267, 7109, 13229, 22349, 3803, 427243, 53569, 61409, 53897, 432491, 1427, 5651, 437771, 7841, 15187, 55219, 14293, 6653, 27943, 6733, 2459, 28447, 456503, 24169, 57571, 8273, 14563, 2903, 29297, 1873, 58937, 1571, 59281, 25033, 4259, 478391, 3673, 2243, 61717, 45013, 8867, 497963, 500791, 6899, 63131, 72353, 63487, 3373, 1451, 3851, 2441, 517927, 64921, 17959, 4663, 5399, 16411, 2141, 3307, 535351, 4793, 538283, 544171, 1663, 2143, 23917, 68947, 11287, 556043, 50821, 7699, 1619, 3079, 4271, 35597, 1531, 82013, 18617, 10333, 9511, 12409, 73477, 53857, 37123, 13921, 26161, 75407, 604811, 2707, 20963, 3463, 87293, 614183, 4051, 3041, 2777, 20117, 2521, 2999, 629963, 2467, 39671, 636331, 3467, 80141, 33997, 5059, 9689, 11621, 2819, 658871, 41281, 8599, 2861, 2099, 41893, 2677, 1667, 42923, 1907, 12323, 86677, 6221, 63493, 10939, 3457, 87931, 705127, 22193, 24547, 715243, 8147, 6977, 722027, 45233, 3343, 728843, 1723, 3989, 17189, 2437, 3187, 13291, 746023, 107069, 108061, 94771, 759911, 763403, 23911, 5147, 6863, 5881, 2063, 777451, 13297, 788071, 98731, 791627, 2003, 49811, 2153, 100069, 100517, 115133, 2657, 809527, 1811, 2549, 816743, 43177, 25693, 2221, 51613, 103681, 9467, 838583, 26263, 15073, 845927, 105971, 2477, 77573, 5323, 107357, 18313, 864427, 1867, 868151, 871883, 9929, 879371, 27539, 55313, 886891, 46877, 898231, 128861, 19273, 113467, 4481, 14243, 917291, 114901, 3517, 3049, 132689, 14543, 932683, 116827, 12163, 4457, 41057, 59141, 30713, 3847, 136573, 5443,

7. Distribution of the primes

Legend of the table: I distinguish between primes p= x^2-40x-73 and
the reducible primes which appear as divisor for the first time
p | x^2-40x-73 and p < x^2-40x-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)
11010461.0000000.4000001.0000000.0000000.0000000.000000
21004220220.4200000.2000000.4200004.2000005.0000003.666667
31.0006021434590.6020000.1430000.60200014.3333337.15000020.863636
410.0006.5101.0025.5080.6510000.1002000.65100010.8139537.00699312.000000
5100.00066.3127.72958.5830.6631200.0772900.66312010.1861757.71357310.635984
61.000.000668.78563.416605.3690.6687850.0634160.66878510.0854298.20494310.333527
710.000.0006.722.909533.0306.189.8790.6722910.0533030.67229110.0524228.40529310.224969
8100.000.00067.488.1454.623.69662.864.4490.6748810.0462370.67488110.0385338.67436310.156006
91.000.000.000676.893.41140.800.102636.093.3090.6768930.0408000.67689310.0298138.82413210.118490
1010.000.000.0006.785.069.762365.125.0496.419.944.7130.6785070.0365130.67850710.0238378.94912110.092772


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
41613670.8125000.3750000.4375001.6250002.0000001.400000
532166100.5000000.1875000.3125001.2307691.0000001.428571
6642412120.3750000.1875000.1875001.5000002.0000001.200000
71285823350.4531250.1796880.2734382.4166671.9166672.916667
825613742950.5351560.1640620.3710942.3620691.8260872.714286
9512295812140.5761720.1582030.4179692.1532851.9285712.252632
101.0246181464720.6035160.1425780.4609382.0949151.8024692.205607
112.0481.2942601.0340.6318360.1269530.5048832.0938511.7808222.190678
124.0962.6424622.1800.6450200.1127930.5322272.0417311.7769232.108317
138.1925.3348374.4970.6511230.1021730.5489502.0189251.8116882.062844
1416.38410.7451.5419.2040.6558230.0940550.5617682.0144361.8410992.046698
1532.76821.5872.84918.7380.6587830.0869450.5718382.0090271.8487992.035854
1665.53643.3565.28238.0740.6615600.0805970.5809632.0084311.8539842.031914
17131.07287.0429.89277.1500.6640780.0754700.5886082.0076121.8727752.026317
18262.144174.55518.488156.0670.6658740.0705260.5953482.0054111.8689852.022903
19524.288349.98935.006314.9830.6675510.0667690.6007822.0050361.8934442.018255
201.048.576701.45066.207635.2430.6689550.0631400.6058152.0042061.8913042.016753
212.097.1521.405.217125.0481.280.1690.6700600.0596280.6104322.0033031.8887432.015243
224.194.3042.815.210237.0052.578.2050.6711980.0565060.6146922.0033991.8953122.013957
238.388.6085.638.188452.2535.185.9350.6721240.0539130.6182122.0027591.9082002.011452
2416.777.21611.289.612865.10010.424.5120.6729130.0515640.6213492.0023471.9128672.010151
2533.554.43222.607.5921.655.82020.951.7720.6737590.0493470.6244112.0025131.9140212.009856
2667.108.86445.263.4423.175.65642.087.7860.6744780.0473210.6271572.0021351.9178752.008794
27134.217.72890.619.7836.101.39584.518.3880.6751700.0454590.6297112.0020531.9213022.008145
28268.435.456181.409.84711.740.524169.669.3230.6758040.0437370.6320682.0018791.9242362.007484
29536.870.912363.137.46722.623.625340.513.8420.6763960.0421400.6342562.0017521.9269692.006926
301.073.741.824726.866.88143.650.596683.216.2850.6769480.0406530.6362952.0016301.9294252.006427
312.147.483.6481.454.851.74084.321.7941.370.529.9460.6774680.0392650.6382032.0015381.9317442.005997
324.294.967.2962.911.783.432163.108.8792.748.674.5530.6779520.0379770.6399762.0014301.9343622.005556
338.589.934.5925.827.499.761315.837.6505.511.662.1110.6784100.0367680.6416422.0013511.9363612.005207
3417.179.869.18411.662.399.805612.172.02711.050.227.7780.6788410.0356330.6432082.0012701.9382492.004881


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
122111010
242111010
383211020
4166513030
5326513030
66412843333
71282310133839
8256421923318318
9512813249334341
101.0241465789370370
112.0482609816231233131
124.09646216529732313225
138.19283729354434103421
1416.3841.5415331.00837683767
1532.7682.8499811.86831.41531.428
1665.5365.2821.7883.49432.61032.666
17131.0729.8923.3506.54234.92234.964
18262.14418.4886.20712.28139.27339.209
19524.28835.00611.72423.282317.432317.568
201.048.57666.20722.02744.180333.161333.040
212.097.152125.04841.57383.475362.505362.537
224.194.304237.00579.026157.9793118.4463118.553
238.388.608452.253150.753301.5003226.0073226.240
2416.777.216865.100288.656576.4443432.3323432.762
2533.554.4321.655.820552.1281.103.6923828.1443827.670
2667.108.8643.175.6561.059.0922.116.56431.587.69231.587.958
27134.217.7286.101.3952.034.4334.066.96233.049.75033.051.639
28268.435.45611.740.5243.913.7427.826.78235.868.65435.871.864
29536.870.91222.623.6257.540.95415.082.671311.309.301311.314.318
301.073.741.82443.650.59614.549.72929.100.867321.822.605321.827.985
312.147.483.64884.321.79428.106.33656.215.458342.155.373342.166.415
324.294.967.296163.108.87954.365.736108.743.143381.551.491381.557.382
338.589.934.592315.837.650105.275.975210.561.6753157.917.8203157.919.824
3417.179.869.184612.172.027204.064.421408.107.6063306.087.2013306.084.820


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
121100001
243210003
385320104
4167340214
53210550514
66412660615
712835171891169
825695455029212322
951221410011464446343
101.02447222424813311113395
112.0481.034515519292227293222
124.0962.1801.0931.087605492604479
138.1924.4972.2512.2461.2291.0071.2561.005
1416.3849.2044.6004.6042.5302.0742.5102.090
1532.76818.7389.3629.3765.0414.2765.0834.338
1665.53638.07419.00819.06610.1858.77810.2998.812
17131.07277.15038.66038.49020.66317.96320.57617.948
18262.144156.06778.63577.43241.46436.70041.47436.429
19524.288314.983158.503156.48083.12974.07883.64574.131
201.048.576635.243319.465315.778167.370150.113167.681150.079
212.097.1521.280.169643.403636.766337.059303.115336.556303.439
224.194.3042.578.2051.294.7351.283.470676.830612.267676.053613.055
238.388.6085.185.9352.603.7382.582.1971.356.9591.235.6731.356.2711.237.032
2416.777.21610.424.5125.233.9215.190.5912.719.4222.492.3972.719.5622.493.131
2533.554.43220.951.77210.517.55010.434.2225.454.1675.022.1575.454.8935.020.555
2667.108.86442.087.78621.126.80920.960.97710.936.69410.108.29210.936.04710.106.753
27134.217.72884.518.38842.415.58942.102.79921.923.50620.337.65821.921.24620.335.978
28268.435.456169.669.32385.137.24884.532.07543.942.50940.898.07843.934.82640.893.910
29536.870.912340.513.842170.830.674169.683.16888.061.55682.200.97388.054.11482.197.199
301.073.741.824683.216.285342.699.969340.516.316176.460.574165.160.422176.446.491165.148.798
312.147.483.6481.370.529.946687.371.996683.157.950353.508.599331.762.927353.519.557331.738.863
324.294.967.2962.748.674.5531.378.408.6491.370.265.904708.177.350666.145.891708.224.971666.126.341
338.589.934.5925.511.662.1112.763.711.8542.747.950.2571.418.572.9641.337.232.5631.418.621.8991.337.234.685
3417.179.869.18411.050.227.7785.540.358.8035.509.868.9752.841.306.1522.683.769.0612.841.397.5132.683.755.052


8. Check for existing Integer Sequences by OEIS

Found in Database : 73, 7, 149, 23, 31, 1, 277, 19, 47, 11, 373, 1, 409, 53, 1, 1, 457, 29, 67, 59,
Found in Database : 73, 7, 149, 23, 31, 277, 19, 47, 11, 373, 409, 53, 457, 29, 67, 59, 43,
Found in Database : 7, 11, 19, 23, 29, 31, 43, 47, 53, 59, 61, 67, 73, 97, 103, 131, 149,