login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A091776
a(1)= 1, a(n+1) = a(n)*(a(n)+1)*(a(n)+2)*...*(a(n)+n-1)/n.
2
1, 1, 1, 2, 30, 6678144, 14783742920460482277828601638764478251520
OFFSET
1,4
COMMENTS
The next term, a(8), has 281 digits. - T. D. Noe, Oct 25 2004
EXAMPLE
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.
MATHEMATICA
a[1]=1; a[n_] := Times@@Range[a[n-1], a[n-1]+n-2]/(n-1); Table[a[i], {i, 7}]
CROSSREFS
Cf. A091777.
Sequence in context: A113511 A292048 A062008 * A159578 A376416 A221192
KEYWORD
nonn
AUTHOR
Amarnath Murthy, Feb 16 2004
EXTENSIONS
Corrected and extended by T. D. Noe, Oct 25 2004
STATUS
approved