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.

A062517 Number of primes between n^5 and (n+1)^5.

Original entry on oeis.org

0, 11, 42, 119, 273, 540, 954, 1573, 2456, 3624, 5181, 7177, 9666, 12797, 16514, 21098, 26454, 32836, 40134, 48760, 58508, 69714, 82277, 96723, 112702, 130639, 150488, 172617, 197039, 223915, 253318, 285540, 320450, 358839, 400159, 445011, 493504
Offset: 0

Views

Author

Labos Elemer, Jul 10 2001

Keywords

Examples

			a(1) = 11 the number of primes between 1 = 1^5 and 32 = 2^5.
		

Crossrefs

Programs

  • Mathematica
    Table[PrimePi[(w+1)^5]-PrimePi[w^5], {w, 0, 50}]
  • PARI
    a(n) = { primepi((n + 1)^5) - primepi((n)^5) } \\ Harry J. Smith, Aug 08 2009

Extensions

Edited for consistency by Peter Munn, Apr 30 2017