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.

A080103 Greatest prime power in all composite numbers between n-th prime and next prime, a(n) = 1 if no such prime power exists.

Original entry on oeis.org

4, 1, 9, 1, 16, 1, 1, 27, 1, 32, 1, 1, 1, 49, 1, 1, 64, 1, 1, 1, 81, 1, 1, 1, 1, 1, 1, 1, 125, 128, 1, 1, 1, 1, 1, 1, 1, 169, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 243, 256, 1, 1, 1, 1, 1, 1, 289, 1, 1, 1, 1, 1, 1, 343, 1, 1, 1, 361, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1
Offset: 2

Views

Author

Reinhard Zumkeller, Jan 28 2003

Keywords

Examples

			There are two prime powers between 7 = A000040(4) and 11 = A000040(5): 8 = 2^3 and 9 = 3^2, therefore a(4) = 9, A080102(4) = 8 and A080101(4) = 2.
		

Crossrefs

Programs

  • Mathematica
    a[n_] := SelectFirst[Range[Prime[n + 1] - 1, Prime[n] + 1, -1], PrimePowerQ, 1]; Array[a, 100, 2] (* Amiram Eldar, Mar 26 2025 *)