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!)
A358498 a(n) = Sum_{k=0..floor(n/3)} (n-3*k)!. 5
1, 1, 2, 7, 25, 122, 727, 5065, 40442, 363607, 3633865, 39957242, 479365207, 6230654665, 87218248442, 1308153733207, 20929020542665, 355774646344442, 6403681859461207, 121666029429374665, 2433257782822984442, 51097345853568901207, 1124122393807037054665 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(n) = n * a(n-1) + a(n-3) - n * a(n-4) for n > 3.
a(n) ~ n! * (1 + 1/n^3 + 3/n^4 + 7/n^5 + 16/n^6 + 46/n^7 + 203/n^8 + 1178/n^9 + 7242/n^10 + ...), for coefficients see A143817. - Vaclav Kotesovec, Nov 24 2022
PROG
(PARI) a(n) = sum(k=0, n\3, (n-3*k)!);
CROSSREFS
Sequence in context: A188719 A103465 A103464 * A339515 A323658 A018980
KEYWORD
nonn,easy
AUTHOR
Seiichi Manyama, Nov 19 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 May 6 06:29 EDT 2024. Contains 372290 sequences. (Running on oeis4.)