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!)
A213032 a(n) = floor(n/2)*floor(n/3)-floor(n/6)^2. 2
0, 0, 0, 1, 2, 2, 5, 5, 7, 11, 14, 14, 20, 20, 24, 31, 36, 36, 45, 45, 51, 61, 68, 68, 80, 80, 88, 101, 110, 110, 125, 125, 135, 151, 162, 162, 180, 180, 192, 211, 224, 224, 245, 245, 259, 281, 296, 296, 320, 320, 336, 361, 378, 378, 405, 405, 423, 451 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,5
LINKS
Index entries for linear recurrences with constant coefficients, signature (1,0,0,0,0,2,-2,0,0,0,0,-1,1).
FORMULA
a(n) = a(n-1)+2*a(n-6)-2*a(n-7)-a(n-12)+a(n-13).
G.f.: (x^3 + x^4 + 3*x^6 + 2*x^8 + 2*x^9 + x^10)/(1 - x - 2*x^6 + 2*x^7 + x^12 - x^13).
MATHEMATICA
a[n_] := Floor[n/2]*Floor[n/3] - Floor[n/6]^2
Table[a[n], {n, 0, 90}] (* A213032 *)
LinearRecurrence[{1, 0, 0, 0, 0, 2, -2, 0, 0, 0, 0, -1, 1}, {0, 0, 0, 1, 2, 2, 5, 5, 7, 11, 14, 14, 20}, 90]
CoefficientList[Series[(x^3 + x^4 + 3 x^6 + 2 x^8 + 2 x^9 + x^10) / (1 - x - 2 x^6 + 2 x^7 + x^12 - x^13), {x, 0, 80}], x] (* Vincenzo Librandi, Aug 02 2013 *)
PROG
(Magma) [Floor(n/2)*Floor(n/3)-Floor(n/6)^2: n in [0..80]]; // Vincenzo Librandi, Aug 02 2013
CROSSREFS
Sequence in context: A157123 A265764 A308768 * A307984 A370585 A167177
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, Jun 05 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 April 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)