login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A245384 a(n) = (1 + a(n-1)) * a(n-2) * a(n-3) with a(1) = 1, a(2) = 2, a(3) = 3. 3
1, 2, 3, 8, 54, 1320, 570672, 40677571440, 30641887385179424640, 711307017047678652146384291462042880, 886599784992546696966754646294076268713472764725575212247451289600 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = A245366(n) - 1 for n>0.
a(n) = A245283(n+3) / A245283(n+2) for n>0.
MATHEMATICA
a[ n_] := If[ n < 4, Max[1, n], a[n] = (1 + a[n-1]) a[n-2] a[n-3]];
PROG
(PARI) {a(n) = if( n<4, max(1, n), (1 + a(n-1)) * a(n-2) * a(n-3))};
(Magma) I:=[1, 2, 3]; [n le 3 select I[n] else (1 + Self(n-1))*Self(n-2)* Self(n-3): n in [1..15]]; // G. C. Greubel, Aug 05 2018
CROSSREFS
Sequence in context: A001686 A013205 A340486 * A292893 A356902 A042365
KEYWORD
nonn
AUTHOR
Michael Somos, Aug 21 2014
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified July 4 11:10 EDT 2024. Contains 373988 sequences. (Running on oeis4.)