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!)
A032378 Noncubes k that are divisible by floor(k^(1/3)). 5
2, 3, 4, 5, 6, 7, 10, 12, 14, 16, 18, 20, 22, 24, 26, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 68, 72, 76, 80, 84, 88, 92, 96, 100, 104, 108, 112, 116, 120, 124, 130, 135, 140, 145, 150, 155, 160, 165, 170, 175, 180, 185, 190, 195, 200, 205, 210, 215, 222, 228, 234, 240 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The Concrete Math Club Casino problem - non-cube winning slots.
REFERENCES
R. L. Graham, D. E. Knuth and O. Patashnik, Concrete Mathematics. 2nd Edition. Addison-Wesley, Reading, MA, 1994. Section 3.2, pp. 74-76.
LINKS
MAPLE
t1:=[]; for n from 1 to 500 do t2:=floor(n^(1/3)); if n mod t2 = 0 and t2^3 <> n then t1:=[op(t1), n]; fi; od:
# Alternate:
seq(seq(n, n=k^3+k..(k+1)^3-1, k), k=1..6); # Robert Israel, Mar 24 2020
MATHEMATICA
Select[Range[300], !IntegerQ[Surd[#, 3]]&&Divisible[#, Floor[Surd[#, 3]]]&] (* Harvey P. Dale, May 13 2020 *)
PROG
(Magma) [k*j: j in [(k^2+1)..(k^2+3*k+3)], k in [1..6]]; // G. C. Greubel, Jul 20 2023
(SageMath) flatten([[k*j for j in range((k^2+1), (k^2+3*k+3)+1)] for k in range(1, 7)]) # G. C. Greubel, Jul 20 2023
CROSSREFS
Sequence in context: A082400 A072993 A018444 * A342726 A164947 A112881
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Dec 22 2001, corrected Oct 29 2006
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 18 18:58 EDT 2024. Contains 371781 sequences. (Running on oeis4.)