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!)
A352659 a(n) = n! * Sum_{k=0..floor(n/3)} 1 / (3*k)!. 4
1, 1, 2, 7, 28, 140, 841, 5887, 47096, 423865, 4238650, 46625150, 559501801, 7273523413, 101829327782, 1527439916731, 24439038667696, 415463657350832, 7478345832314977, 142088570813984563, 2841771416279691260, 59677199741873516461, 1312898394321217362142 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
E.g.f.: (exp(x) + 2 * exp(-x/2) * cos(sqrt(3)*x/2)) / (3*(1 - x)).
a(n) = floor(c * n!), where c = 1.16805831... = A143819.
MATHEMATICA
Table[n! Sum[1/(3 k)!, {k, 0, Floor[n/3]}], {n, 0, 22}]
nmax = 22; CoefficientList[Series[(Exp[x] + 2 Exp[-x/2] Cos[Sqrt[3] x/2])/(3 (1 - x)), {x, 0, nmax}], x] Range[0, nmax]!
PROG
(PARI) a(n) = n! * sum(k=0, n\3, 1/(3*k)!); \\ Michel Marcus, Mar 29 2022
CROSSREFS
Sequence in context: A370509 A141318 A276080 * A030875 A130906 A009628
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, 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 23 02:53 EDT 2024. Contains 371906 sequences. (Running on oeis4.)