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!)
A054206 Consider all integer triples (i,j,k), j >= k > 0, with binomial(i+2,3)=j^3+k^3, ordered by increasing i; sequence gives j values. 3
3, 49, 106, 306, 348, 443, 830, 1103, 5169, 6135, 6427, 7512, 10668, 12465, 14061, 18456, 20463, 17943, 21919, 27766, 38509, 41932, 53284, 54040, 67330, 78418, 102298, 135082, 238207, 286706, 279850, 319935, 373785, 665863, 734790, 759731, 995600, 987492, 998289, 1100210, 963913, 1119792, 1196684 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The i values are in A054205 and k values in A054207.
LINKS
EXAMPLE
binomial(5+2,3)=35=2^3+3^3; binomial(95+2,3)=147440=49^3+31^3;
MATHEMATICA
lst = {}; Do[ b = Binomial[i + 2, 3]; j = Floor[b^(1/3)]; lmt = Ceiling[j/2]; While[ k = (b - j^3)^(1/3); j > lmt && !IntegerQ[k], j-- ]; If[j != lmt, Print[{i, j, k}]; AppendTo[lst, {i, j, k}]], {i, 2, 30000}]; (Transpose@lst)[[2]] (* Robert G. Wilson v, Jan 15 2007 *)
CROSSREFS
Sequence in context: A252171 A160763 A041523 * A063777 A359886 A212651
KEYWORD
nice,nonn
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Jan 28 2000
EXTENSIONS
More terms from Martin Fuller, Nov 27 2006
Offset corrected by N. J. A. Sloane, Jan 14 2009
a(30)-a(36) from Jon E. Schoenfield, Jan 14 2009
a(37)-a(43) from Jon E. Schoenfield, Aug 30 2013
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)