[go: up one dir, main page]

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!)
A053018 Let Do(n)=A006566(n)=n-th dodecahedral number. Consider all integer triples (i,j,k), j >= k>0, with Do(i)=Do(j)+Do(k), ordered by increasing i; sequence gives j values. 3
178, 150, 2012, 4840, 7773, 8904, 17403, 22363, 24699, 26200, 21916, 22250, 37022, 39223, 61190, 62899, 102450, 123108, 223132, 269966, 374384, 591930, 554636, 636031, 743699, 892780, 1295888, 1468290, 1395491, 1822152, 1859152, 1957822 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
i values are A053017 and k values are A053019.
LINKS
EXAMPLE
Do(179) = 25665020 = 25236484 + 428536 = Do(178) + Do(46);
Do(184) = 27880600 = 15086400 + 12794200 = Do(150) + Do(142).
MATHEMATICA
(* This is just a recomputation of j values, given i values. *)
A053017 = Cases[Import["https://oeis.org/A053017/b053017.txt", "Table"], {_, _}][[All, 2]];
do[n_] := n*(3*n - 1)*(3*n - 2)/2;
triples = Reap[Module[{s, i, j, k, n, ijk}, s[i_] := Solve[j >= k > 0 && do[i] == do[j] + do[k], {j, k}, Integers]; For[n = 1, n <= Length[A053017], n++, i = A053017[[n]]; ijk = {i, j, k} /. s[i] // First; Print[ijk]; Sow[ijk]]]][[2, 1]];
A053018 = triples[[All, 2]] (* Jean-François Alcover, Feb 17 2015, updated Jul 09 2022 *)
CROSSREFS
Sequence in context: A189910 A189904 A189160 * A046436 A114081 A217037
KEYWORD
nice,nonn
AUTHOR
Klaus Strassburger (strass(AT)ddfi.uni-duesseldorf.de), Feb 24 2000
EXTENSIONS
More terms from Jon E. Schoenfield, Aug 13 2007
a(27)-a(32) from Donovan Johnson, Aug 15 2010
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 August 29 06:09 EDT 2024. Contains 375510 sequences. (Running on oeis4.)