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!)
A352638 Expansion of e.g.f. 1/(1 - 3*sin(x)). 1
1, 3, 18, 159, 1872, 27543, 486288, 10016619, 235798272, 6244714443, 183756215808, 5947907121879, 210026879004672, 8034293365747743, 330982609573398528, 14609181655918083939, 687820834029346947072, 34407546247054875367443 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(0) = 1; a(n) = 3 * Sum_{k=0..floor((n-1)/2)} (-1)^k * binomial(n,2*k+1) * a(n-2*k-1).
a(n) ~ n! / (2^(3/2) * arcsin(1/3)^(n+1)). - Vaclav Kotesovec, Mar 26 2022
MATHEMATICA
With[{m = 17}, Range[0, m]! * CoefficientList[Series[1/(1 - 3*Sin[x]), {x, 0, m}], x]] (* Amiram Eldar, Mar 26 2022 *)
PROG
(PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/(1-3*sin(x))))
(PARI) a(n) = if(n==0, 1, 3*sum(k=0, (n-1)\2, (-1)^k*binomial(n, 2*k+1)*a(n-2*k-1)));
CROSSREFS
Sequence in context: A075678 A341331 A089901 * A238302 A371020 A067302
KEYWORD
nonn
AUTHOR
Seiichi Manyama, Mar 25 2022
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 19 03:30 EDT 2024. Contains 371782 sequences. (Running on oeis4.)