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!)
A141625 E.g.f. satisfies: A(x) = exp(x*A(sin(x))). 1
1, 1, 3, 16, 121, 1196, 14593, 211884, 3564177, 68088880, 1454676641, 34335669820, 886637924569, 24846347615792, 750534094219393, 24299661162891796, 839155129170873505, 30780528267862736320, 1194857640269127135937 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
MAPLE
A:= proc(n) option remember; if n=0 then 1 else unapply (convert (series (exp (x* A(n-1)(sin(x))), x, n+1), polynom), x) fi end; a:= n-> coeff (A(n)(x), x, n)*n!: seq (a(n), n=0..20);
MATHEMATICA
A[n_] := A[n] = If[n == 0, 1, Normal[Series[Exp[x*A[n-1][Sin[x]]], {x, 0, n+1}]] /. x -> #]&; a[n_] := Coefficient[A[n][x], x, n]*n!; Table[a[n], {n, 0, 20}] (* Jean-François Alcover, Feb 14 2014, after Maple *)
CROSSREFS
Sequence in context: A121629 A351218 A200793 * A053588 A295928 A035352
KEYWORD
nonn
AUTHOR
Alois P. Heinz, Aug 24 2008
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 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)