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

A374150 a(n) is the (2^n)-th prime-indexed prime.

Original entry on oeis.org

3, 5, 17, 67, 241, 739, 2063, 5441, 13693, 34351, 83617, 198479, 465337, 1076401, 2461873, 5582917, 12548171, 28018649, 62133769, 137034913, 300736621, 656953343, 1429360349, 3098240417, 6692967079, 14414137427, 30952936639, 66293412113, 141636592337, 301924957273
Offset: 0

Views

Author

Amiram Eldar, Jun 29 2024

Keywords

Comments

The data was calculated using Kim Walisch's primecount program.

Examples

			a(0) = 3 since prime(prime(2^0)) = prime(prime(1)) = prime(2) = 3.
a(1) = 5 since prime(prime(2^1)) = prime(prime(2)) = prime(3) = 5.
		

Crossrefs

Programs

  • Mathematica
    Table[Prime[Prime[2^n]], {n, 0, 30}]
  • PARI
    a(n) = prime(prime(2^n));

Formula

a(n) = A006450(2^n).
a(n) = A000040(A033844(n)).
Showing 1-1 of 1 results.