cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-9 of 9 results.

A209202 Values of the difference d for 3 primes in geometric-arithmetic progression with the minimal sequence {3*3^j + j*d}, j = 0 to 2.

Original entry on oeis.org

2, 8, 10, 20, 22, 28, 38, 50, 52, 62, 70, 92, 98, 100, 118, 122, 128, 140, 142, 170, 202, 218, 220, 230, 232, 248, 260, 268, 272, 302, 308, 328, 350, 358, 380, 392, 400, 430, 440, 470, 478, 482, 512, 532, 538, 548, 562, 568, 598, 632, 638, 650, 700, 710, 730
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be even and coprime to 3.

Examples

			d = 8 then {3*3^j + j*d}, j = 0 to 2, is  {3, 17, 43}, which is 3 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 3; gapset3d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d}] == {True, True, True}, AppendTo[gapset3d, d]], {d, 0, 1000, 2}]; gapset3d

A209203 Values of the difference d for 4 primes in geometric-arithmetic progression with the minimal sequence {5*5^j + j*d}, j = 0 to 3.

Original entry on oeis.org

6, 12, 16, 28, 34, 36, 54, 76, 78, 84, 114, 124, 132, 138, 142, 148, 154, 166, 168, 208, 226, 258, 268, 288, 324, 348, 376, 414, 436, 442, 454, 462, 496, 538, 552, 562, 582, 588, 684, 714, 736, 744, 798, 804, 814, 832, 882, 894, 912, 946, 972, 994, 1006
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

Numbers n such that n+25, 2n+125, and 3n+625 are prime.
A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be even and coprime to 5.
This sequence is infinite on Dickson's conjecture. [Charles R Greathouse IV, Mar 12 2012]

Examples

			d = 12  then {5*5^j + j*d}, j = 0 to 3, is {5, 37, 149, 661}, which is 4 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 5; gapset4d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d}] == {True, True, True, True}, AppendTo[gapset4d, d]], {d, 0, 1000, 2}]; gapset4d
    Select[Range[2,1100,2],And@@PrimeQ[{#+25,2#+125,3#+625}]&] (* Harvey P. Dale, Jan 06 2013 *)
  • PARI
    forstep(n=2,1e3,[2,2,2,4],if(isprime(n+25)&&isprime(2*n+125)&&isprime(3*n+625),print1(n", "))) \\ Charles R Greathouse IV, Mar 12 2012

A209204 Values of the difference d for 5 primes in geometric-arithmetic progression with the minimal sequence {5*5^j + j*d}, j = 0 to 4.

Original entry on oeis.org

84, 114, 138, 168, 258, 324, 348, 462, 552, 588, 684, 714, 744, 798, 882, 894, 972, 1176, 1602, 1734, 2196, 2256, 2442, 2478, 2568, 2646, 2658, 2688, 3036, 3162, 3444, 3906, 4524, 5154, 5406, 5544, 5766, 5796, 6018, 6456, 6594, 6636, 6936, 7272, 7938, 8736
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 3# = 6 and coprime to 5.
Subsequence of A209203. - Zak Seidov, Jul 06 2013

Examples

			d = 114 then {5*5^j + j*d}, j = 0 to 4, is {5, 139, 353, 967, 3581}, which is 5 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 5; gapset5d  = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d}] == {True, True, True, True, True}, AppendTo[gapset5d, d]], {d, 2, 10000, 2}]; gapset5d

A209205 Values of the difference d for 6 primes in geometric-arithmetic progression with the minimal sequence {7*7^j + j*d}, j = 0 to 5.

Original entry on oeis.org

144, 1494, 1740, 2040, 3324, 4044, 6420, 12804, 13260, 13464, 13620, 15444, 25824, 31524, 31674, 31680, 32124, 33720, 38064, 40410, 44634, 45804, 46260, 51810, 54510, 56100, 58914, 60810, 68004, 69114, 70794, 74574, 76050, 77694, 80580, 81510, 82434, 89244
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 3# = 6 and coprime to 7.

Examples

			d = 1494 then {7*7^j + j*d}, j = 0 to 5, is {7, 1543, 3331, 6883, 22783, 125119}, which is 6 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 7; gapset6d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d}] == {True, True, True, True, True, True}, AppendTo[gapset6d, d]], {d, 0, 100000, 2}]; gapset6d

A209206 Values of the difference d for 7 primes in geometric-arithmetic progression with the minimal sequence {7*7^j + j*d}, j = 0 to 6.

Original entry on oeis.org

3324, 13260, 38064, 46260, 51810, 54510, 58914, 76050, 81510, 82434, 109800, 119340, 120714, 132390, 141480, 154254, 167904, 169734, 185040, 209214, 252864, 253110, 256080, 278514, 291930, 292314, 337104, 341694, 379944, 392964, 404730, 406074, 412050
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be to be multiple of 3# = 6 and coprime to 7.

Examples

			d = 13260 then {7*7^j + j*d}, j = 0 to 6, is {7, 13309, 26863, 42181, 69847, 183949, 903103}, which is 7 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 7; gapset7d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d, p*p^6 + 6*d}] == {True, True, True, True, True, True, True}, AppendTo[gapset7d, d]], {d, 0, 500000, 2}]; gapset7d

A209207 Values of the difference d for 8 primes in geometric-arithmetic progression with the minimal sequence {11*11^j + j*d}, j = 0 to 7.

Original entry on oeis.org

62610, 165270, 420300, 505980, 669780, 903030, 932400, 1004250, 1052610, 1093080, 1230270, 1231020, 1248120, 1433250, 1571430, 1742040, 1908480, 2668290, 2885220, 3367590, 3416520, 3760290, 3813630, 3965250, 3995340, 4137450, 4334610, 5443620, 5939250
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 5# = 30 and coprime to 11.

Examples

			d = 165270 then {11*11^j + j*d}, j = 0 to 8, is {11, 165391, 331871, 510451, 822131, 2597911, 20478791, 215515771}, which is 8 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 11; gapset8d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d, p*p^6 + 6*d, p*p^7 + 7*d}] == {True, True, True, True, True, True, True, True}, AppendTo[gapset8d, d]], {d, 0, 10^7, 2}]

A209208 Values of the difference d for 9 primes in geometric-arithmetic progression with the minimal sequence {11*11^j + j*d}, j = 0 to 8.

Original entry on oeis.org

903030, 1004250, 3760290, 7296450, 7763520, 17988210, 28962390, 29956950, 33316320, 37265160, 39013800, 39768150, 43920480, 50110620, 54651480, 56388810, 74306610, 74679810, 75911850, 89115210, 92619690, 98518800, 108718080, 116535300, 116958450, 117671820
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 5# = 30 and coprime to 11.

Examples

			d = 1004250 then {11*11^j + j*d}, j = 0 to 8, is {11, 1004371, 2009831, 3027391, 4178051, 6792811, 25512671, 221388631, 2365981691}, which is 9 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 11; gapset9d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d, p*p^6 + 6*d, p*p^7 + 7*d, p*p^8 + 8*d}] == {True, True, True, True, True, True, True, True, True}, AppendTo[gapset9d, d]], {d, 0, 10^8, 2}]

A209209 Values of the difference d for 10 primes in geometric-arithmetic progression with the minimal sequence {11*11^j + j*d}, j = 0 to 9.

Original entry on oeis.org

903030, 17988210, 28962390, 39768150, 74306610, 89115210, 116535300, 173227980, 186013380, 237952050, 359613030, 386317920, 392253990, 443687580, 499153200, 548024610, 591655080, 652133160, 665780640, 705583830, 758828310, 910046550, 920546160, 921847290
Offset: 1

Views

Author

Sameen Ahmed Khan, Mar 06 2012

Keywords

Comments

A geometric-arithmetic progression of primes is a set of k primes (denoted by GAP-k) of the form p r^j + j d for fixed p, r and d and consecutive j. Symbolically, for r = 1, this sequence simplifies to the familiar primes in arithmetic progression (denoted by AP-k). The computations were done without any assumptions on the form of d. Primality requires d to be multiple of 5# = 30 and coprime to 11.

Examples

			d = 17988210 then {11*11^j + j*d}, j = 0 to 9, is {11, 17988331, 35977751, 53979271, 72113891, 91712611, 127416431, 340276351, 2501853371, 26099318491}, which is 10 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    p = 11; gapset10d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d, p*p^6 + 6*d, p*p^7 + 7*d, p*p^8 + 8*d, p*p^9 + 9*d}] == {True, True, True, True, True, True, True, True, True, True}, AppendTo[gapset10d, d]], {d, 0, 10^8, 2}]

A227280 Values of the difference d for 12 primes in geometric-arithmetic progression with the minimal sequence {13*13^j + j*d}, j = 0 to 11.

Original entry on oeis.org

81647160420, 170655787050, 211212209880, 227961624450
Offset: 1

Views

Author

Sameen Ahmed Khan, Jul 05 2013

Keywords

Comments

Primality requires d to be multiple of 7# = 2*3*5*7 = 210.
Fifth term is > (1600*10^6)*(210) = 336000000000.

Examples

			d = 170655787050 then {13*13^j + j*d}, j = 0 to 11, is {13, 170655787219, 341311576297, 511967389711, 682623519493, 853283762059, 1023997470817, 1195406240071, 1375850795773, 1673760575299, 3498718264537, 25175298780031}, which is 12 primes in geometric-arithmetic progression.
		

Crossrefs

Programs

  • Mathematica
    Clear[p]; p = 13; gapset12d = {}; Do[If[PrimeQ[{p, p*p + d, p*p^2 + 2*d, p*p^3 + 3*d, p*p^4 + 4*d, p*p^5 + 5*d, p*p^6 + 6*d, p*p^7 + 7*d, p*p^8 + 8*d, p*p^9 + 9*d, p*p^10 + 10*d, p*p^11 + 11*d}] == {True, True, True, True, True, True, True, True, True, True, True, True}, AppendTo[gapset12d, d]], {d, 2, 10^11, 2}]; gapset12d
Showing 1-9 of 9 results.