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!)
A064835 If n mod 2 = 0 then a(n) = n^4/4 - 2*n^2 + 3*n; otherwise, a(n) = n^4/4 - 2*n^2 + 3*n - 5/4. 2
0, 0, 2, 10, 44, 120, 270, 522, 920, 1504, 2330, 3450, 4932, 6840, 9254, 12250, 15920, 20352, 25650, 31914, 39260, 47800, 57662, 68970, 81864, 96480, 112970, 131482, 152180, 175224, 200790, 229050, 260192, 294400, 331874, 372810, 417420, 465912, 518510, 575434 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
G. L. Cohen and E. Tonkes, Dartboard arrangements, Elect. J. Combin., 8 (No. 2, 2001), #R4.
FORMULA
G.f.: 2*x^2*(1+x+7*x^2-3*x^3)/((1-x)^5*(1+x)). [Colin Barker, Apr 20 2012]
a(n) = 4*a(n-1) - 5*a(n-2) + 5*a(n-4) - 4*a(n-5) + a(n-6). - Vincenzo Librandi, Jun 19 2018
MATHEMATICA
Table[If[EvenQ[n], n^4/4-2n^2+3n, n^4/4-2n^2+3n-5/4], {n, 0, 40}] (* Harvey P. Dale, Dec 02 2014 *)
LinearRecurrence[{4, -5, 0, 5, -4, 1}, {0, 0, 2, 10, 44, 120}, 40] (* Vincenzo Librandi, Jun 19 2018 *)
PROG
(PARI) { for (n=0, 1000, a=n^4/4 - 2*n^2 + 3*n; if (n%2, a-=5/4); write("b064835.txt", n, " ", a) ) } \\ Harry J. Smith, Sep 28 2009
(Magma) I:=[0, 0, 2, 10, 44, 120]; [n le 6 select I[n] else 4*Self(n-1) - 5*Self(n-2) + 5*Self(n-4) - 4*Self(n-5) + Self(n-6): n in [1..40]]; // Vincenzo Librandi, Jun 19 2018
CROSSREFS
Sequence in context: A121949 A005144 A305657 * A225958 A240377 A025590
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Oct 25 2001
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 24 02:28 EDT 2024. Contains 371917 sequences. (Running on oeis4.)