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.

A114067 The n-th prime minus n gives a fourth power.

Original entry on oeis.org

1, 2, 2603, 4485, 2894125, 8422110, 16832512, 17322137, 20485427, 32550001, 34980568, 49197457, 58325415
Offset: 1

Views

Author

Giovanni Resta, Feb 13 2006

Keywords

Examples

			p(32550001)-32550001 = 236421376 = 592240896 = 156^4.
		

Crossrefs

Subsequence of A064370 (gives a square).

Programs

  • PARI
    isok(n) = ispower(prime(n) - n, 4); \\ Michel Marcus, Jan 22 2014