login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A002821 a(n) = nearest integer to n^(3/2).
(Formerly M2437 N0964)
6

%I M2437 N0964 #31 Jul 30 2022 19:13:20

%S 0,1,3,5,8,11,15,19,23,27,32,36,42,47,52,58,64,70,76,83,89,96,103,110,

%T 118,125,133,140,148,156,164,173,181,190,198,207,216,225,234,244,253,

%U 263,272,282,292,302,312,322,333,343,354,364,375,386,397

%N a(n) = nearest integer to n^(3/2).

%D M. Boll, Tables Numériques Universelles. Dunod, Paris, 1947, p. 46.

%D M. Hall, Jr., The Diophantine equation x^3-y^2=k, pp. 173-198 of A. O. L. Atkin and B. J. Birch, editors, Computers in Number Theory. Academic Press, NY, 1971.

%D A. V. Lebedev and R. M. Fedorova, A Guide to Mathematical Tables. Pergamon, Oxford, 1960, p. 17.

%D N. J. A. Sloane, A Handbook of Integer Sequences, Academic Press, 1973 (includes this sequence).

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H T. D. Noe, <a href="/A002821/b002821.txt">Table of n, a(n) for n = 0..1000</a>

%F a(n) = floor(n^(3/2) + 1/2). - _Ridouane Oudra_, Nov 13 2019

%F a(n) = sqrt(A077118(n)). - _Chai Wah Wu_, Jul 30 2022

%p [ seq(round(eval(n^(3/2))), n=0..100) ];

%t t[n_]:=Module[{flt=Floor[n],cet=Ceiling[n]},If[n-flt<cet-n,flt, cet]]; t/@(Range[0,60]^((3/2))) (* _Harvey P. Dale_, May 12 2011 *)

%o (Haskell)

%o a002821 = round . sqrt . fromIntegral . (^ 3)

%o -- _Reinhard Zumkeller_, Jul 11 2014

%o (Python)

%o from math import isqrt

%o def A002821(n): return (m:=isqrt(k:=n**3))+int((k-m*(m+1)<<2)>=1) # _Chai Wah Wu_, Jul 30 2022

%Y Cf. A000093, A077118.

%K nonn,easy,nice

%O 0,3

%A _N. J. A. Sloane_

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 18 06:24 EDT 2024. Contains 371769 sequences. (Running on oeis4.)