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!)
A144968 Number of squares between consecutive cubes. 2
1, 2, 3, 2, 4, 3, 4, 4, 4, 5, 5, 5, 5, 6, 6, 5, 7, 6, 6, 7, 7, 7, 7, 7, 7, 8, 8, 8, 8, 8, 8, 9, 8, 9, 9, 8, 10, 9, 9, 9, 10, 10, 9, 10, 10, 10, 11, 10, 10, 11, 11, 10, 11, 11, 11, 12, 11, 11, 12, 11, 12, 12, 12, 11, 13, 12, 12, 12, 13, 12, 13, 12, 13, 13, 13, 13, 13, 13, 14, 13, 13, 14, 14 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
a(n) = sum {A010052(k): n^3 <= k < (n+1)^3}. - Reinhard Zumkeller, Jul 24 2015, corrected.
LINKS
FORMULA
a(n) = ceiling((n+1)^(3/2)) - ceiling(n^(3/2)).
MATHEMATICA
Last[#]-First[#]&/@Partition[Table[Ceiling[n^(3/2)], {n, 0, 90}], 2, 1] (* Harvey P. Dale, Jul 10 2013 *)
PROG
(Haskell)
a144968 n = a144968_list !! n
a144968_list = zipWith (-) (tail a185549_list) a185549_list
-- Reinhard Zumkeller, Jul 24 2015
(PARI) for(n=0, 50, print1(ceil((n+1)^(3/2)) - ceil(n^(3/2)), ", ")) \\ G. C. Greubel, Jul 08 2017
CROSSREFS
Sequence in context: A118653 A173753 A295753 * A239328 A076753 A352576
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Sep 27 2008, Sep 29 2008
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 23 07:16 EDT 2024. Contains 371905 sequences. (Running on oeis4.)