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!)
A036781 a(n) = n + Sum_{k=0..n} k!. 2
1, 3, 6, 13, 38, 159, 880, 5921, 46242, 409123, 4037924, 43954725, 522956326, 6749977127, 93928268328, 1401602636329, 22324392524330, 378011820620331, 6780385526348332, 128425485935180333, 2561327494111820334, 53652269665821260335, 1177652997443428940336 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
MAPLE
a:= proc(n) option remember; `if`(n=0, 1, a(n-1)+1+n!) end:
seq(a(n), n=0..30); # Alois P. Heinz, Jan 05 2015
MATHEMATICA
Module[{nn=30, f}, f=Accumulate[Range[0, nn]!]; Table[n+f[[n]], {n, nn}]]-1 (* Harvey P. Dale, Nov 04 2020 *)
Module[{nn=30, f}, f=Accumulate[Range[0, nn]!]; Total/@Thread[{f, Range[0, nn]}]] (* Harvey P. Dale, Jan 31 2023 *)
CROSSREFS
A003422[ n ] + n.
Cf. A007489.
Sequence in context: A053564 A264236 A216999 * A370208 A084816 A055738
KEYWORD
nonn
AUTHOR
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 15:48 EDT 2024. Contains 371780 sequences. (Running on oeis4.)