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.

A220079 a(n) = 7^(n!).

Original entry on oeis.org

7, 7, 49, 117649, 191581231380566414401
Offset: 0

Views

Author

Vincenzo Librandi, Dec 16 2012

Keywords

Crossrefs

Programs

  • Magma
    [7^Factorial(n): n in [0..7]];
    
  • Mathematica
    Table[7^(n!), {n, 0, 7}]
  • Maxima
    makelist(7^(n!),n,0,5); /* Martin Ettl, Dec 27 2012 */

Formula

a(n) = a(n-1)^n, a(0) = 7.
a(n) = A000420(A000142(n)).