Reminder: The OEIS is hiring a new managing editor, and the application deadline is January 26.
%I #12 Jul 08 2017 13:12:33
%S 0,2,3,6,8,11,15,18,22,26,30,34,39,44,48,54,59,64,70,76,82,88,95,101,
%T 108,114,121,128,136,143,150,158,166,174,181,190,198,206,215,223,232,
%U 241,250,259,268,277,287,296,306,315,325,335,345,355,365,376,386,397,407,418,429,440,450,462,473,484,495,507,518,530,542,553,565,577,589,602,614,626
%N a(n) = floor(n^(3/2) - n^(1/2)) - n; complement of A185600.
%H G. C. Greubel, <a href="/A185599/b185599.txt">Table of n, a(n) for n = 3..5000</a>
%t Table[Floor[n^(3/2)-n^(1/2)]-n, {n,3,80}]
%o (PARI) for(n=3,50, print1(floor(n^(3/2)-n^(1/2))-n, ", ")) \\ _G. C. Greubel_, Jul 08 2017
%Y Cf. A185600, A185601, A185602.
%K nonn
%O 3,2
%A _Clark Kimberling_, Jan 31 2011