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!)
A166474 a(1)=1; a(2)=2; for n>2, a(n)=a(n-1)+A000217(n-1)*a(n-2). 3
1, 2, 5, 17, 67, 322, 1729, 10745, 72989, 556514, 4570909, 41300833, 397831735, 4156207538, 45928539713, 544673444273, 6790954845241, 90125991819010, 1251379270355221, 18375317715967121, 281164964490563531, 4525863356878968482 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Equals the eigensequence of an infinite lower triangular matrix with 1's in the main diagonal and the triangular series in the subdiagonal.
LINKS
FORMULA
a(n+1) = A166469(A066120(n)).
E.g.f.: -2*exp(sqrt(2)*arctanh(x/sqrt(2)))/(x^2-2) = ((sqrt(2) + x)^2/(2 - x^2))^(1/sqrt(2))*2/(2 - x^2). - Vaclav Kotesovec, Oct 19 2012
a(n) ~ n!*2^(1/sqrt(2)-n/2)*n^(1/sqrt(2))/(2*Gamma(1+1/sqrt(2))). - Vaclav Kotesovec, Oct 19 2012
MATHEMATICA
Rest[CoefficientList[Series[-2*E^(Sqrt[2]*ArcTanh[x/Sqrt[2]])/(x^2-2), {x, 0, 20}], x]* Range[0, 20]!] (* Vaclav Kotesovec, Oct 19 2012 *)
PROG
(Haskell)
a166474 n = a166474_list !! (n-1)
a166474_list = 1 : 2 : zipWith (+)
(tail a166474_list) (zipWith (*) a166474_list $ drop 2 a000217_list)
-- Reinhard Zumkeller, Feb 27 2012
CROSSREFS
Sequence in context: A062881 A122206 A104082 * A054769 A003510 A051625
KEYWORD
nonn
AUTHOR
Matthew Vandermast, Nov 05 2009
EXTENSIONS
More terms from Sean A. Irvine, Jun 16 2011
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 May 15 01:31 EDT 2024. Contains 372536 sequences. (Running on oeis4.)