The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A271949 Somos's sequence {b(4,n)} defined in comment in A078495: a(0)=a(1)=...=a(10)=1; for n>=11, a(n)=(a(n-1)*a(n-10)+a(n-5)*a(n-6))/a(n-11). 6
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 3, 4, 5, 6, 8, 14, 26, 46, 76, 200, 356, 596, 1044, 1952, 5136, 17888, 48376, 109520, 225248, 724672, 1749280, 5359328, 18277312, 57803136, 235710976, 1067767168, 3411743616, 9748806656, 29696723456, 156028988416 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,12
LINKS
MATHEMATICA
a[k_, n_]:=a[k, n]=If[n>2k+2, (a[k, (n-1)]*a[k, (n-2k-2)]+a[k, (n-k-1)]*a[k, (n-k-2)])/a[k, (n-2k-3)], 1];
Map[a[4, #]&, Range[0, 50]] (* Peter J. C. Moses, Apr 17 2016 *)
RecurrenceTable[{Table[a[d]==1, {d, 0, 10}], a[n]==(a[n-1]a[n-10]+ a[n-5]a[n-6])/ a[n-11]}, a, {n, 50}] (* Harvey P. Dale, Oct 18 2021 *)
PROG
(PARI) {a(n) = if(n< 11, 1, (a(n-1)*a(n-10) + a(n-5)*a(n-6))/a(n-11))};
for(n=0, 30, print1(a(n), ", ")) \\ G. C. Greubel, Feb 21 2018
(Magma) [n le 11 select 1 else (Self(n-1)*Self(n-10) + Self(n-5)*Self(n- 6))/Self(n-11): n in [1..30]]; // G. C. Greubel, Feb 21 2018
CROSSREFS
Sequence in context: A352821 A102516 A156981 * A039089 A044956 A297139
KEYWORD
nonn
AUTHOR
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 June 5 01:34 EDT 2024. Contains 373102 sequences. (Running on oeis4.)