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.

A338364 a(n) = Product_{k=1..n} phi(prime(k)-1).

Original entry on oeis.org

1, 1, 1, 2, 4, 16, 64, 512, 3072, 30720, 368640, 2949120, 35389440, 566231040, 6794772480, 149484994560, 3587639869440, 100453916344320, 1607262661509120, 32145253230182400, 771486077524377600, 18515665860585062400, 444375980654041497600, 17775039226161659904000
Offset: 0

Views

Author

Marc LeBrun and N. J. A. Sloane, Nov 04 2020

Keywords

Examples

			a(5) = phi(1)*phi(2)*phi(4)*phi(6)*phi(10) = 1*1*2*2*4 = 16.
		

Crossrefs

Programs

  • Maple
    with(NumberTheory);
    f:=n->mul(phi(ithprime(k)-1),k=1..n);
    [seq(f(n),n=1..32)];
  • PARI
    a(n) = prod(k=1, n, eulerphi(prime(k)-1)); \\ Michel Marcus, Nov 04 2020