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

A185595
a(n) = floor(n^(3/2)) - floor(n^(1/2)); complement of A185596.
2
0, 1, 4, 6, 9, 12, 16, 20, 24, 28, 33, 38, 43, 49, 55, 60, 66, 72, 78, 85, 92, 99, 106, 113, 120, 127, 135, 143, 151, 159, 167, 176, 184, 193, 202, 210, 219, 228, 237, 246, 256, 266, 275, 285, 295, 305, 316, 326, 336, 346, 357, 367, 378, 389, 400, 412, 423, 434, 446, 457, 469, 481, 493, 504, 516, 528, 540, 552, 565, 577, 590, 602, 615, 628, 641, 654, 667, 680, 694, 707
OFFSET
1,3
LINKS
MATHEMATICA
Table[Floor[n^(3/2)]-Floor[n^(1/2)], {n, 1, 80}]
PROG
(PARI) for(n=1, 50, print1(floor(n^(3/2)) - floor(n^(1/2)), ", ")) \\ G. C. Greubel, Jul 08 2017
CROSSREFS
Cf. A185596.
Sequence in context: A310667 A317538 A310668 * A310669 A310670 A088765
KEYWORD
nonn
AUTHOR
Clark Kimberling, Jan 31 2011
STATUS
approved