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-6 of 6 results.

A084954 Initial prime of a prime chain of length n under the iteration x->2x+3.

Original entry on oeis.org

2, 2, 2, 2, 47, 47, 6047, 477727, 30596497, 3388516667, 340746580567, 1763093883977, 773521306107547, 1142275515892937, 391230854658184967
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = cx + d.
Is it smallest initial prime of a prime chain of length n under the iteration x->2x+3, or not? At least up to 3388516667 it is the smallest one. - Zak Seidov, Dec 20 2013

Examples

			a(3) = 2 since 2, 2*2+3=7 and 2*7+3=17 are primes.
		

Crossrefs

Extensions

More terms from Don Reble, Nov 07 2007
a(15) from Bert Dobbelaere, Jun 01 2025

A084960 Initial prime of a prime chain of length n under the iteration x->5x+4.

Original entry on oeis.org

2, 3, 5, 83, 263, 5333, 5333, 6714497, 42360737, 3757699889, 3757699889, 1431898413161, 5654774136689, 12756824771254199, 184574272412533499
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = c*x + d.

Examples

			a(3) = 5 since 5, f(5) = 29 and f(29) = 149 are primes when f(x) = 5x+4.
		

Crossrefs

Programs

  • Mathematica
    t[p_] := Block[{c=1, q = 5*p+4}, While[ PrimeQ@q, q = 5*q + 4; c++]; c]; a[n_] := Block[{p = 2}, While[t[p] < n, p = NextPrime@ p]; p]; Array[a, 8] (* Giovanni Resta, Mar 21 2017 *)

Extensions

a(9) from Stefan Steinerberger, May 18 2007
a(10)-a(11) from Donovan Johnson, Sep 27 2008
a(12)-a(13) from Giovanni Resta, Mar 21 2017
a(14)-a(15) from Bert Dobbelaere, May 30 2025

A084958 Initial prime of a prime chain of length n under the iteration x->5x+2.

Original entry on oeis.org

2, 3, 13, 19, 373, 135859, 135859, 18235423, 26588257, 93112729, 376038903103, 7087694466289, 120223669028389
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = cx + d.
a(11) > 8695354111. - Donovan Johnson, Sep 27 2008

Examples

			a(3)=13 since 13, f(13)=67 and f(67)=337 are primes when f(x) = 5x+2.
		

Crossrefs

Programs

  • Mathematica
    c[p_] := Block[{k = 1, q = 5*p+2}, While[ PrimeQ[q], q = 5*q+2; k++]; k]; a[n_] := Block[{p = 2}, While[c[p] < n, p = NextPrime@ p]; p]; Array[a, 7] (* Giovanni Resta, Mar 21 2017 *)

Extensions

a(10) from Donovan Johnson, Sep 27 2008
a(11)-a(12) from John Cerkan, Jan 20 2017
a(13) from Giovanni Resta, Mar 21 2017

A084956 Initial prime of the first prime chain of length n under the iteration x -> 3x+4.

Original entry on oeis.org

2, 3, 3, 23, 3203, 34613, 165443, 1274803, 26314573, 26314573, 590256673403, 15113026057043, 334156170011893, 3998669569752373
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = cx + d.
a(11) > 8695354111. - Donovan Johnson, Sep 27 2008

Examples

			a(3) = 3 since 3, f(3) = 13 and f(13) = 43 are primes when f(x) = 3*x + 4.
		

Crossrefs

Programs

  • Mathematica
    c[p_] := Block[{k=1, q=3*p + 4}, While[PrimeQ[q], q=3*q+4; k++]; k]; a[n_] := Block[{p = 2}, While[c[p] < n, p = NextPrime[p]]; p]; Array[a, 7] (* Giovanni Resta, Mar 22 2017 *)

Extensions

a(9)-a(10) from Donovan Johnson, Sep 27 2008
a(11)-a(12) from John Cerkan, Jan 13 2017
a(13)-a(14) from Giovanni Resta, Mar 22 2017

A084957 Initial prime of the first prime chain of length n under the iteration x -> 4x + 3.

Original entry on oeis.org

2, 2, 2, 2, 1447, 9769, 17231, 17231, 32611, 18527009, 161205841, 3123824801, 26813406071, 4398156030379, 4398156030379
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = c*x + d.

Examples

			a(3) = 2 since 2, f(2) = 11, and f(11) = 47 are primes when f(x) = 4*x + 3.
		

Crossrefs

Programs

  • Mathematica
    c[p_] := Block[{k=1, q=4*p+3}, While[ PrimeQ[q], q=4*q+3; k++]; k]; a[n_] := Block[ {p=2}, While[c[p] < n, p = NextPrime@ p]; p]; Array[a, 9] (* Giovanni Resta, Mar 21 2017 *)
  • PARI
    has(p,n)=for(i=2,n, if(!isprime(p=4*p+3), return(0))); 1
    a(n)=forprime(p=2,, if(has(p,n), return(p))) \\ Charles R Greathouse IV, Jan 20 2017

Extensions

a(11)-a(12) from Donovan Johnson, Sep 27 2008
a(13) from John Cerkan, Jan 20 2017
a(14)-a(15) from Giovanni Resta, Mar 21 2017

A084961 Initial prime of the first prime chain of length n under the iteration x->6x+5.

Original entry on oeis.org

2, 2, 2, 2, 11, 13, 115571, 23586221, 53165771, 3398453717, 615502598677, 32504183957101, 164289842304587
Offset: 1

Views

Author

W. Edwin Clark, Jun 14 2003

Keywords

Comments

This is a special case of prime chains generated by f(x) = cx + d.
a(11) > 10175130529. [Donovan Johnson, Sep 27 2008]

Examples

			a(3) = 2 since 2, f(2) = 17, and f(17) = 107 are primes when f(x) = 6*x + 5.
		

Crossrefs

Programs

  • Mathematica
    c[p_] := Block[{k=1, q=6*p+5}, While[ PrimeQ[q], q = 6*q+5; k++]; k]; a[n_] := Block[ {p=2}, While[c[p] < n, p = NextPrime[p]]; p]; Array[a, 7] (* Giovanni Resta, Mar 22 2017 *)

Extensions

a(8)-a(10) from Donovan Johnson, Sep 27 2008
a(11)-a(12) from John Cerkan, Jan 11 2017
a(13) from Giovanni Resta, Mar 22 2017
Showing 1-6 of 6 results.