login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A111236 a(1)=a(2)=a(3)=a(4)=1. For n >= 5, a(n)= (a(n-1)+a(n-2)) * (a(n-3)+a(n-4)). 0
1, 1, 1, 1, 4, 10, 28, 190, 3052, 123196, 27522064, 89625932920, 11318569384820032, 312907271203608153807520, 28053218967767813941001154374119168, 317524819653692484884273872549799784105586335582976 (list; graph; refs; listen; history; internal format)
OFFSET

1,5

MATHEMATICA

RecurrenceTable[{a[1]==a[2]==a[3]==a[4]==1, a[n]==(a[n-1]+a[n-2]) (a[n-3]+ a[n-4])}, a[n], {n, 20}](* From Harvey P. Dale, Aug 08 2011 *)

PROG

(PARI) a(n)=if(n<5, 1, (a(n-1)+a(n-2)) *(a(n-3)+a(n-4))) (Klasen)

CROSSREFS

Sequence in context: A083587 A061639 A008995 * A164361 A006907 A052946

Adjacent sequences:  A111233 A111234 A111235 * A111237 A111238 A111239

KEYWORD

easy,nonn

AUTHOR

Leroy Quet Oct 28 2005

EXTENSIONS

More terms from Lambert Klasen (lambert.klasen(AT)gmx.net), Oct 31 2005

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 14 15:39 EST 2012. Contains 205635 sequences.