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.

A132377 a(n) = PrimePi(n)^n.

Original entry on oeis.org

0, 1, 8, 16, 243, 729, 16384, 65536, 262144, 1048576, 48828125, 244140625, 13060694016, 78364164096, 470184984576, 2821109907456, 232630513987207, 1628413597910449, 144115188075855872, 1152921504606846976, 9223372036854775808, 73786976294838206464
Offset: 1

Views

Author

Giovanni Teofilatto, Nov 10 2007

Keywords

Crossrefs

Cf. A000720.

Programs

  • Magma
    [(#PrimesUpTo(n))^n: n in [1..50] ]; // G. C. Greubel, Nov 08 2022
    
  • Mathematica
    Table[PrimePi[n]^n, {n, 50}] (* G. C. Greubel, Nov 08 2022 *)
  • Python
    from sympy import primepi
    def A132377(n): return primepi(n)**n # Chai Wah Wu, Jan 25 2024
  • SageMath
    [prime_pi(n)^n for n in range(1, 51)] # G. C. Greubel, Nov 08 2022
    

Formula

a(n) = A000720(n)^n.