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!)
A242295 Positive integers k for which k^3 is greedy-summable. 4
6, 9, 13, 14, 18, 19, 25, 27, 28, 39, 40, 41, 44, 46, 49, 57, 67, 78, 82, 87, 90, 92, 93, 99, 100, 103, 109, 114, 115, 123, 125, 130, 132, 133, 135, 140, 150, 151, 160, 165, 169, 173, 182, 188, 193, 204, 208, 209, 211, 214, 217, 224, 230, 237, 238, 240, 244 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Greedy summability is defined at A242293.
LINKS
EXAMPLE
Let s(n) = n^3 = A000578(n). Then
a(1) = 6; s(6) = 216 = 125 + 64 + 27;
a(2) = 9; s(9) = 729 = 512 + 216 + 1;
a(3) = 13; s(13) = 2197 = 1728 + 343 + 125 + 1;
a(4) = 14; s(14) = 2744 = 2197 + 512 + 27 + 8.
MATHEMATICA
z = 200; s = Table[n^3, {n, 1, z}]; t = Table[{s[[n]], #, Total[#] == s[[n]]} &[DeleteCases[-Differences[FoldList[If[#1 - #2 >= 0, #1 - #2, #1] &, s[[n]], Reverse[Select[s, # < s[[n]] &]]]], 0]], {n, z}]
r[n_] := s[[n]] - Total[t[[n]][[2]]];
tr = Table[r[n], {n, 2, z}] (* A242293 *)
c = Table[Length[t[[n]][[2]]], {n, 2, z}] (* A242294 *)
f = 1 + Flatten[Position[tr, 0]] (* A242295 *)
f^3 (* A242296 *) (* Peter J. C. Moses, May 06 2014 *)
CROSSREFS
Sequence in context: A263773 A242874 A284800 * A064799 A236763 A030499
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 10 2014
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 July 31 03:21 EDT 2024. Contains 374774 sequences. (Running on oeis4.)