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!)
A333881 Expansion of e.g.f. exp(Sum_{k>=0} x^(3*k + 1) / (3*k + 1)!). 3
1, 1, 1, 1, 2, 6, 16, 37, 114, 478, 1907, 6777, 28414, 148579, 758916, 3580189, 18981485, 117883917, 720627553, 4193077474, 26795418840, 191751387094, 1352954503595, 9301704998742, 69285817230370, 559142785301527, 4453089770243547, 35182348161102172 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
COMMENTS
Number of partitions of n-set into blocks congruent to 1 mod 3.
LINKS
FORMULA
E.g.f.: exp(exp(x)/3 - 2*sin(Pi/6 - sqrt(3)*x/2) / (3*exp(x/2))). - Vaclav Kotesovec, Apr 15 2020
a(0) = 1; a(n) = Sum_{k=0..floor((n-1)/3)} binomial(n-1,3*k) * a(n-3*k-1). - Seiichi Manyama, Sep 22 2023
MATHEMATICA
nmax = 27; CoefficientList[Series[Exp[Sum[x^(3 k + 1)/(3 k + 1)!, {k, 0, nmax}]], {x, 0, nmax}], x] Range[0, nmax]!
a[n_] := a[n] = Sum[Boole[MemberQ[{1}, Mod[k, 3]]] Binomial[n - 1, k - 1] a[n - k], {k, 1, n}]; a[0] = 1; Table[a[n], {n, 0, 27}]
nmax = 30; CoefficientList[Series[Exp[Exp[x]/3 - 2*Sin[Pi/6 - Sqrt[3]*x/2] / (3*Exp[x/2])], {x, 0, nmax}], x] * Range[0, nmax]! (* Vaclav Kotesovec, Apr 15 2020 *)
CROSSREFS
Sequence in context: A099099 A074082 A212383 * A351968 A097813 A167821
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Apr 08 2020
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 20 14:08 EDT 2024. Contains 372717 sequences. (Running on oeis4.)