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.

A307031 n to the power n double factorial, n^(n!!).

Original entry on oeis.org

1, 4, 27, 65536, 30517578125, 22452257707354557240087211123792674816, 54361846697263307560529495055267343940077014163990039113495978834700158362117849904436807
Offset: 1

Views

Author

Mark Stander, Mar 20 2019

Keywords

Comments

The next term -- a(8) -- has 347 digits. - Harvey P. Dale, Aug 11 2021

Crossrefs

Programs

  • Mathematica
    Table[n^n!!,{n,7}] (* Harvey P. Dale, Aug 11 2021 *)
  • Python
    def doublefactorial(n):
         if n <= 0:
             return 1
         else:
             return n * doublefactorial(n-2)
    for n in range(1,m):
        print(n**doublefactorial(n))

Formula

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