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

A274825 Gaps associated with the arithmetic progressions in A278735.

Original entry on oeis.org

0, 2, 6, 78, 8640, 1155000, 82419540
Offset: 1

Views

Author

Bobby Jacobs, Dec 08 2016

Keywords

Comments

The first set of 4 prime-indexed primes in arithmetic progression (353, 431, 509, and 587) contains consecutive terms of A142160.

Examples

			a(4) = 78 because 353 = prime(prime(20)), 431 = prime(prime(23)), 509 = prime(prime(25)), 587 = prime(prime(28)), and 431-353 = 509-431 = 587-509 = 78.
For the corresponding arithmetic progressions, see _Charles R Greathouse IV_'s example in A278735. - _Bobby Jacobs_, Jan 02 2017
		

Crossrefs

Extensions

a(7) from Bobby Jacobs, Jan 02 2017

A278735 Smallest prime-indexed prime ending an arithmetic progression of n prime-indexed primes.

Original entry on oeis.org

3, 5, 17, 587, 47857, 7336423, 785979097
Offset: 1

Views

Author

Bobby Jacobs, Nov 27 2016

Keywords

Comments

The first set of 4 prime-indexed primes in arithmetic progression (353, 431, 509, and 587) contains consecutive terms of A142160.

Examples

			a(4) = 587 because 353 = prime(prime(20)), 431 = prime(prime(23)), 509 = prime(prime(25)), 587 = prime(prime(28)), and 431-353 = 509-431 = 587-509 = 78.
From _Charles R Greathouse IV_, Nov 27 2016: (Start)
The corresponding arithmetic progressions are
3;
3, 5;
5, 11, 17;
353, 431, 509, 587;
13297, 21937, 30577, 39217, 47857;
1561423, 2716423, 3871423, 5026423, 6181423, 7336423;
and with the main diagonal being terms of this sequence. (End)
		

Crossrefs

Right border of A279021.

Programs

  • PARI
    findAP(len)=my(t); if(len<3, return(v[len])); for(i=len, #v, for(j=1, i-len+1, t=(v[i]-v[j])/(len-1); if(denominator(t)>1, next); forstep(k=v[j]+t, v[i]-t, t, if(!setsearch(v, k), next(2))); return(vector(len, k, v[j]+(k-1)*t)))); "not found"
    listPIP(lim)=my(v=List(), p); forprime(q=2, lim, if(isprime(p++), listput(v, q))); Vec(v)
    v=listPIP(1e7);
    apply(findAP, [1..6]) \\ Charles R Greathouse IV, Nov 27 2016

Extensions

a(7) from Charles R Greathouse IV, Dec 27 2016

A279062 Initial terms of the arithmetic progressions in A278735.

Original entry on oeis.org

3, 3, 5, 353, 13297, 1561423, 291461857
Offset: 1

Views

Author

Bobby Jacobs, Dec 05 2016

Keywords

Comments

The first set of 4 prime-indexed primes in arithmetic progression (353, 431, 509, and 587) contains consecutive terms of A142160.

Examples

			a(4) = 353 because 353 = prime(prime(20)), 431 = prime(prime(23)), 509 = prime(prime(25)), 587 = prime(prime(28)), and 431-353 = 509-431 = 587-509 = 78.
The corresponding arithmetic progressions are
3;
3, 5;
5, 11, 17;
353, 431, 509, 587;
13297, 21937, 30577, 39217, 47857;
1561423, 2716423, 3871423, 5026423, 6181423, 7336423;
...
		

Crossrefs

Left border of A279021.

Extensions

a(7) from Charles R Greathouse IV, Dec 27 2016

A278637 Numbers k such that Fibonacci(k) is either prime or semiprime.

Original entry on oeis.org

3, 4, 5, 7, 8, 9, 10, 11, 13, 14, 17, 19, 22, 23, 26, 29, 31, 34, 41, 43, 47, 53, 59, 61, 71, 73, 79, 83, 89, 94, 101, 107, 109, 113, 121, 127, 131, 137, 151, 167, 173, 191, 193, 199, 227, 251, 271, 277, 293, 331, 353, 359, 397, 401, 431, 433, 449, 467, 509, 569, 571, 587, 599, 601, 613, 631, 653, 743, 991, 1091, 1223, 1373, 1487
Offset: 1

Views

Author

Bobby Jacobs, Jan 04 2017

Keywords

Comments

Numbers k such that 2 <= A063375(k) <= 4.
All numbers in the first 4 rows of A279021 are in this sequence (3, 5, 11, 17, 353, 431, 509, and 587).
Are all numbers of A279021 in this sequence?

Crossrefs

Formula

Extensions

a(31)-a(64) from Charles R Greathouse IV, Jan 04 2017
a(65)-a(73) from Max Alekseyev, Feb 26 2023
Showing 1-4 of 4 results.