login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A011869
a(n) = floor(n*(n-1)/16).
1
0, 0, 0, 0, 0, 1, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 15, 17, 19, 21, 23, 26, 28, 31, 34, 37, 40, 43, 47, 50, 54, 58, 62, 66, 70, 74, 78, 83, 87, 92, 97, 102, 107, 112, 118, 123, 129, 135, 141, 147, 153, 159, 165, 172, 178, 185, 192, 199, 206, 213, 221, 228, 236, 244, 252, 260
OFFSET
0,8
LINKS
Index entries for linear recurrences with constant coefficients, signature (3,-4,4,-4,4,-4,4,-4,4,-4,4,-4,4,-4,4,-3,1).
FORMULA
G.f.: -((x^5 (1-x+x^2) (1-x+x^2-x^3+x^4-x^5+x^6))/((-1+x)^3 (1+x^2) (1+x^4) (1+x^8)))
MATHEMATICA
Table[Floor[(n(n-1))/16], {n, 0, 70}] (* or *) LinearRecurrence[{3, -4, 4, -4, 4, -4, 4, -4, 4, -4, 4, -4, 4, -4, 4, -3, 1}, {0, 0, 0, 0, 0, 1, 1, 2, 3, 4, 5, 6, 8, 9, 11, 13, 15}, 70] (* Harvey P. Dale, May 23 2019 *)
PROG
(Magma) [(n*(n-1) div 16) : n in [0..70]]; // Vincenzo Librandi, May 26 2019
CROSSREFS
Cf. A011861.
Sequence in context: A191886 A184115 A050418 * A177738 A134030 A226189
KEYWORD
nonn
AUTHOR
STATUS
approved