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!)
A275539 a(n) = n! + n*(n-1)!!. 1
1, 2, 4, 12, 36, 160, 810, 5376, 41160, 366336, 3638250, 39959040, 479126340, 6227619840, 87180183090, 1307684044800, 20922822320400, 355687603568640, 6402374325997650, 121645103938928640, 2432902021271221500, 51090942249743155200, 1124000728080092512650 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = n! + n*(n-1)!! = n*((n-1)! + (n-1)!!).
MAPLE
a:= proc(n) option remember; `if`(n<5, [1, 2, 4, 12, 36]
[n+1], ((n-3)^2*n*a(n-1) +(n-4)*n*(n-1)*a(n-2)
-(n-3)*n*(n-1)*(n-2)*a(n-3))/((n-4)*(n-2)))
end:
seq(a(n), n=0..25); # Alois P. Heinz, Dec 07 2016
MATHEMATICA
Table[n! + n (n-1)!!, {n, 0, 20}] (* Bruno Berselli, Aug 11 2016 *)
CROSSREFS
Sequence in context: A276230 A003701 A255432 * A356062 A193049 A114500
KEYWORD
nonn,easy
AUTHOR
Olivier Gérard, Aug 01 2016
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 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)