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!)
A093302 a(n) = (a(n-1)+(2n-1))*(2n) with a(0) = 0. 3
0, 2, 20, 150, 1256, 12650, 151932, 2127230, 34035920, 612646866, 12252937700, 269564629862, 6469551117240, 168208329048890, 4709833213369676, 141294996401091150, 4521439884834917792, 153728956084387206050 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) = 2 * floor(e^(1/2) * n! * 2^n) - 2n - 2.
E.g.f.: (2x+4x^2)/(1-2x) * exp(x).
a(n) = 2*A271476(n) for n >= 1. - Altug Alkan, Aug 01 2018
MATHEMATICA
RecurrenceTable[{a[0]==0, a[n]==(a[n-1]+2n-1)2n}, a, {n, 20}] (* Harvey P. Dale, May 20 2014 *)
PROG
(PARI) a(n)=2*floor(exp(1/2)*n!*2^n)-2*n-2
(PARI) x='x+O('x^99); concat(0, Vec(serlaplace((2*x+4*x^2)/(1-2*x)*exp(x)))) \\ Altug Alkan, Aug 01 2018
(PARI) a=vector(99); a[1]=2; for(n=2, #a, a[n] = 2*(a[n-1]+2*n-1)*n); concat(0, a) \\ Altug Alkan, Aug 01 2018
CROSSREFS
a(n) = A007566(n)-1 = 2*A010844(n)-2n-2. Bisection of A077138.
Cf. A271476.
Sequence in context: A198647 A081159 A105489 * A248337 A270444 A093130
KEYWORD
easy,nonn
AUTHOR
Emrehan Halici (emrehan(AT)halici.com.tr), Apr 24 2004
EXTENSIONS
Edited by Ralf Stephan, Apr 26 2004
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 5 12:04 EDT 2024. Contains 372275 sequences. (Running on oeis4.)