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!)
A079069 a(n) = a(n-2) * a(n-3) + a(n-3), n>3. a(1) = a(2) = a(3) = 1. 1
1, 1, 1, 2, 2, 3, 6, 8, 21, 54, 176, 1155, 9558, 203456, 11040645, 1944642006, 2246285672576, 21470102051374515, 4368221476369196469462, 48227982626747161978326473216, 93786160880652497618461924784373935445 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,4
LINKS
MAPLE
a:=proc(n) option remember; if n=1 then 1 elif n=2 then 1 elif n=3 then 1 else a(n-2)*a(n-3)+a(n-3); fi; end: seq(a(n), n=1..25); # Wesley Ivan Hurt, Jan 27 2017
MATHEMATICA
RecurrenceTable[{a[1]==a[2]==a[3]==1, a[n]==a[n-2]a[n-3]+a[n-3]}, a, {n, 25}] (* Harvey P. Dale, Jul 18 2015 *)
PROG
(PARI) {a(n) = if( n<4, n>0, (1 + a(n-2)) * a(n-3))}
CROSSREFS
Cf. A078919.
Sequence in context: A039870 A100948 A035571 * A019465 A077074 A163493
KEYWORD
nonn,easy
AUTHOR
Michael Somos, Dec 22 2002
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 April 18 20:26 EDT 2024. Contains 371781 sequences. (Running on oeis4.)