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!)
A224869 a(n) = n*( a(n-1)+1 ), initialized by a(1) = -1. 2
-1, 0, 3, 16, 85, 516, 3619, 28960, 260649, 2606500, 28671511, 344058144, 4472755885, 62618582404, 939278736075, 15028459777216, 255483816212689, 4598708691828420, 87375465144739999, 1747509302894800000, 36697695360790800021, 807349297937397600484 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
LINKS
FORMULA
a(n) +(-n-2)*a(n-1) +(2*n-1)*a(n-2) +(-n+2)*a(n-3)=0. - R. J. Mathar, Jul 28 2013
a(n) = exp(1)*n*Gamma(n,1) - 2*Gamma(n+1,0). - Martin Clever Mar 27 2023
EXAMPLE
a(4) = 4*(a(3)+1) = 4*4 = 16.
MATHEMATICA
A224869[1] := -1; A224869[n_] := A224869[n - 1]n + n; Table[A224869[n], {n, 40}] (* Alonso del Arte, Jul 22 2013 *)
PROG
(Python)
a=-1
for n in range(2, 24):
print str(a)+', ',
a= n*(a+1)
CROSSREFS
Cf. A007526, A038156, A166554, A121662 (3rd column).
Sequence in context: A056369 A056360 A278681 * A163604 A151329 A356402
KEYWORD
sign,easy
AUTHOR
Alex Ratushnyak, Jul 22 2013
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 25 01:35 EDT 2024. Contains 371964 sequences. (Running on oeis4.)