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!)
A220699 a(0)=0, a(1)=0; for n>1, a(n) = a(n-1) + (n-4)*a(n-2) + 1 2
0, 0, 1, 2, 3, 6, 13, 32, 85, 246, 757, 2480, 8537, 30858, 116229, 455668, 1850417, 7774102, 33679941, 150291472, 689170529, 3244125554, 15649195077, 77287580604, 390271482145, 2013310674830, 10599283282021 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
LINKS
FORMULA
a(0)=a(1)=0, a(2)=1, a(n) = 2*a(n-1)+(n-5)*a(n-2)-(n-5)*a(n-3).
a(n) ~ (sqrt(Pi)/2+sqrt(2)) * n^(n/2-3/2)*exp(sqrt(n)-n/2-1/4) * (1-29/(24*sqrt(n))). - Vaclav Kotesovec, Dec 27 2012
MATHEMATICA
RecurrenceTable[{a[1]==0, a[2]==0, a[n]==a[n-1] + (n-5) a[n-2] + 1}, a, {n, 40}]
PROG
(Magma) [n le 2 select 0 else Self(n-1)+(n-5)*Self(n-2) + 1: n in [1..30]];
CROSSREFS
Sequence in context: A076836 A363071 A296531 * A202086 A227366 A171878
KEYWORD
nonn,easy
AUTHOR
Vincenzo Librandi, Dec 25 2012
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 4 00:44 EDT 2024. Contains 372225 sequences. (Running on oeis4.)