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!)
A094906 Numbers m such that m^3-k^3 is a square for some k<m. 1
1, 4, 8, 9, 10, 14, 16, 25, 28, 32, 33, 36, 40, 49, 56, 57, 64, 65, 71, 72, 74, 78, 81, 90, 100, 105, 112, 114, 121, 126, 128, 130, 132, 140, 144, 148, 154, 155, 160, 169, 176, 193, 196, 200, 217, 218, 224, 225, 228, 250, 252, 256, 260, 266, 273, 280, 284, 288 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) seems to be asymptotic to c*n^(3/2) where c = 0.49....
EXAMPLE
8^3-7^3 = 13^2 hence 8 is in the sequence.
MATHEMATICA
q[n_] := AnyTrue[Range[0, n - 1], IntegerQ@Sqrt[n^3 - #^3] &]; Select[Range[300], q] (* Amiram Eldar, May 08 2022 *)
PROG
(PARI) for(n=1, 420, if(sum(i=0, n-1, issquare(n^3-i^3))>0, print1(n, ", ")))
CROSSREFS
Sequence in context: A141608 A367768 A243176 * A312829 A078542 A124982
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Jun 16 2004
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 16 14:51 EDT 2024. Contains 371749 sequences. (Running on oeis4.)