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!)
A070929 Smallest integer >= 0 of the form x^2 - n^3. 6
0, 0, 1, 9, 0, 19, 9, 18, 17, 0, 24, 38, 36, 12, 65, 106, 0, 128, 97, 30, 100, 148, 168, 154, 100, 0, 113, 198, 249, 260, 225, 138, 356, 163, 297, 389, 0, 423, 353, 217, 9, 248, 441, 17, 80, 79, 8, 506, 297, 0, 316, 574, 17, 119, 145, 89, 784, 568, 252, 737, 225, 548 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
a(n)=0 iff n is a square.
LINKS
FORMULA
a(n) = ceiling(n^(3/2))^2 - n^3 = A077115(n) - n^3.
EXAMPLE
A077115(10) = 1024 = 32^2 is the least square >= 10^3 = 1000, therefore a(10) = 1024 - 1000 = 24.
MATHEMATICA
f[n_]=Ceiling[n^(3/2)]^2-n^3;
t1=Table[f[n], {n, 1, 90}]; t1 (* Clark Kimberling, Jan 30 2011 *)
PROG
(PARI) for(n=1, 100, print1(ceil(n^(3/2))^2-n^3, ", "))
CROSSREFS
Sequence in context: A117465 A136679 A299154 * A007394 A067153 A057405
KEYWORD
easy,nonn
AUTHOR
Benoit Cloitre, May 20 2002
STATUS
approved

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 19 15:11 EDT 2024. Contains 371794 sequences. (Running on oeis4.)