The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A242307 Squares-greedy summable numbers. 3
5, 10, 13, 14, 17, 20, 21, 25, 26, 29, 30, 34, 35, 37, 40, 41, 45, 46, 49, 50, 53, 54, 58, 59, 62, 63, 65, 68, 69, 73, 74, 77, 78, 80, 81, 82, 85, 86, 90, 91, 94, 95, 97, 98, 101, 104, 105, 109, 110, 113, 114, 116, 117, 120, 121, 122, 125, 126, 130, 131, 134 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Greedy sums and summability are defined at A242305.
LINKS
EXAMPLE
a(1) = 5 = 4 + 1; a(2) = 9 + 1
a(3) = 13 = 9 + 4; a(4) = 14 = 9 + 4 + 1.
MATHEMATICA
z = 200; s = Table[n^2, {n, 1, z}]; s1 = Table[n, {n, 1, z}]; t = Table[{s1[[n]], #, Total[#] == s1[[n]]} &[DeleteCases[-Differences[FoldList[If[#1 - #2 >= 0, #1 - #2, #1] &, s1[[n]],
Reverse[Select[s, # < s1[[n]] &]]]], 0]], {n, z}]
r[n_] := s1[[n]] - Total[t[[n]][[2]]];
tr = Table[r[n], {n, 2, z}] (* A242305 *)
c = Table[Length[t[[n]][[2]]], {n, 2, z}] (* A242306 *)
f = 1 + Flatten[Position[tr, 0]] (* A242307 *) (* Peter J. C. Moses, May 06 2014 *)
CROSSREFS
Sequence in context: A194464 A192336 A001974 * A313377 A224448 A046130
KEYWORD
nonn,easy
AUTHOR
Clark Kimberling, May 11 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 May 23 03:55 EDT 2024. Contains 372758 sequences. (Running on oeis4.)