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.

A228529 a(n) = prime(n*prime(n)).

Original entry on oeis.org

3, 13, 47, 107, 257, 397, 653, 881, 1279, 1889, 2293, 3119, 3847, 4423, 5323, 6563, 7937, 8819, 10391, 11833, 12889, 14831, 16477, 18713, 21599, 23603, 25189, 27409, 29063, 31511, 37159, 39869, 43321, 45589, 50923, 53281, 57271, 61561, 65173, 69821, 74383
Offset: 1

Views

Author

Omar E. Pol, Oct 20 2013

Keywords

Examples

			For n = 2, prime(2*prime(2)) = prime(2*3) = prime(6) = 13, so a(2) = 13.
		

Crossrefs

Programs

  • Mathematica
    Table[Prime[n*Prime[n]], {n, 100}] (* T. D. Noe, Oct 22 2013 *)
  • PARI
    a(n) = prime(n*prime(n)); \\ Michel Marcus, Oct 22 2013

Formula

a(n) = A000040(A033286(n)).