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.

A072042 a(n+2) = a(n+1)*a(n)*(1+1/n), a(1)=a(2)=1.

Original entry on oeis.org

1, 1, 2, 3, 8, 30, 288, 10080, 3317760, 37623398400, 138694895861760000, 5739990655358858585702400000, 868480806755424464755519466250436608000000000
Offset: 1

Views

Author

Benoit Cloitre, Jul 29 2002

Keywords

Crossrefs

Programs

  • Mathematica
    a[1] = a[2] = 1; a[n_] := a[n - 1]*a[n - 2]*(1 + 1/(n - 2)); Table[ a[n], {n, 1, 13}]
    RecurrenceTable[{a[1]==a[2]==1,a[n+2]==a[n+1]*a[n]*(1+1/n)},a,{n,13}] (* Harvey P. Dale, Sep 18 2018 *)

Extensions

Edited by Robert G. Wilson v, Jul 31 2002