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.

A251965 Indices of primes in A055729(m), where A055729(m) is the number of primes <= 3^m.

Original entry on oeis.org

1, 5, 11, 13, 14, 31
Offset: 1

Views

Author

David Baugh, Mar 21 2015

Keywords

Comments

A055729 is the sequence primepi(3^n). A087865 are the terms of A055729 that are prime. a(n) is the index of the n-th prime term in A055729.

Examples

			1 is a term since A055729(1) = 2 is prime.
The next prime appearing in A055729 is 53, which occurs at index 5, so a(2)=5.
		

Crossrefs

Programs

  • Mathematica
    Select[Range@49,PrimeQ[PrimePi[3^#]]&]