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”).

A126696
Tenth-squares: floor(n/10)*ceiling(n/10).
0
0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 9, 12, 12, 12, 12, 12, 12, 12, 12, 12, 16, 20, 20, 20, 20, 20, 20, 20, 20, 20, 25, 30, 30, 30, 30, 30, 30, 30, 30, 30, 36, 42, 42, 42, 42, 42, 42, 42, 42, 42, 49, 56, 56, 56, 56, 56, 56, 56, 56, 56
OFFSET
0,12
FORMULA
Equivalently, floor(n^2/100).
MATHEMATICA
f[n_]:=Module[{c=n/10}, Floor[c]Ceiling[c]]; f[Range[0, 90]] (* Harvey P. Dale, Apr 04 2011 *)
PROG
(Magma) [ Floor(n/10)*Ceiling(n/10) : n in [0..100]];
KEYWORD
easy,nonn
AUTHOR
Jonathan Vos Post, May 27 2007
STATUS
approved