Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #9 Jul 08 2017 12:48:18
%S 0,1,4,6,9,12,16,20,24,28,33,38,43,49,55,60,66,72,78,85,92,99,106,113,
%T 120,127,135,143,151,159,167,176,184,193,202,210,219,228,237,246,256,
%U 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
%N a(n) = floor(n^(3/2)) - floor(n^(1/2)); complement of A185596.
%H G. C. Greubel, <a href="/A185595/b185595.txt">Table of n, a(n) for n = 1..5000</a>
%t Table[Floor[n^(3/2)]-Floor[n^(1/2)], {n,1,80}]
%o (PARI) for(n=1,50, print1(floor(n^(3/2)) - floor(n^(1/2)), ", ")) \\ _G. C. Greubel_, Jul 08 2017
%Y Cf. A185596.
%K nonn
%O 1,3
%A _Clark Kimberling_, Jan 31 2011