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!)
A066046 a(1) = 1; a(2) = 2; a(3) = 3; a(n+3) = a(n+2)*a(n+1) + a(n+1)*a(n) + a(n)*a(n+2). 1
1, 2, 3, 11, 61, 887, 64535, 61233287, 4006061344659, 245562839177678209243, 983754834334464538655453075619011, 241573634114919799405450621896403920334941569392914059 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
a[1] = 1; a[2] = 2; a[3] = 3; a[n_] := a[n] = a[n - 1]*a[n - 2] + a[n - 2]*a[n - 3] + a[n - 1]*a[n - 3]; Table[a[n], {n, 1, 13} ]
nxt[{a_, b_, c_}]:={b, c, a*b+a*c+b*c}; Transpose[NestList[nxt, {1, 2, 3}, 12]][[1]] (* Harvey P. Dale, Jan 23 2015 *)
PROG
(PARI) { for (n = 1, 18, if (n>3, a=a1*a2 + a2*a3 + a3*a1; a3=a2; a2=a1; a1=a, if (n==1, a=a3=1, if (n==2, a=a2=2, a=a1=3))); write("b066046.txt", n, " ", a) ) } \\ Harry J. Smith, Nov 08 2009
CROSSREFS
Sequence in context: A110482 A242366 A105217 * A065597 A256394 A219513
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Dec 29 2001
EXTENSIONS
More terms from Robert G. Wilson v, Dec 31 2001
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 23 08:29 EDT 2024. Contains 371905 sequences. (Running on oeis4.)