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.

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

Original entry on oeis.org

1, 1, 1, 2, 30, 6678144, 14783742920460482277828601638764478251520
Offset: 1

Views

Author

Amarnath Murthy, Feb 16 2004

Keywords

Comments

The next term, a(8), has 281 digits. - T. D. Noe, Oct 25 2004

Examples

			a(2)=1/1=1, a(3)=1*2/2=1, a(4)=1*2*3/3=2, a(5)=2*3*4*5/4=30.
		

Crossrefs

Cf. A091777.

Programs

  • Mathematica
    a[1]=1; a[n_] := Times@@Range[a[n-1], a[n-1]+n-2]/(n-1); Table[a[i], {i, 7}]

Extensions

Corrected and extended by T. D. Noe, Oct 25 2004