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!)
A242192 Number of ways to write n^4 as sum of a square and a cube, both > 0. 4
0, 0, 0, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 2, 0, 0, 1, 0, 0, 1, 0, 0, 0, 0, 0, 0, 0, 0 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,72
COMMENTS
a(n) = number of occurrences of n in A242183;
a(A242186(n)) > 1.
LINKS
EXAMPLE
a(6) = #{28^2 + 8^3} = 1;
a(72) = #{4941^2 + 135^3, 1728^2 + 288^3} = 2;
a(225) = #{49375^2 + 500^3, 33750^2 + 1125^3, 10125^2 + 1350^3} = 3;
a(1800) = #{3160000^2 + 8000^3, 2835000^2 + 13500^3, 2160000^2 + 18000^3, 648000^2 + 21600^3} = 4;
a(24200) = #{582914112^2 + 147136^3, 564344000^2 + 290400^3, 479160000^2 + 484000^3, 219615000^2 + 665500^3, 42092875^2 + 698775^3} = 5.
PROG
(Haskell)
a242192 n = sum $ map (a010052 . (n ^ 4 -)) $
takeWhile (< n ^ 4) $ map (^ 3) [1..]
-- Reinhard Zumkeller, May 07 2014
CROSSREFS
Sequence in context: A219485 A337165 A057918 * A016380 A341354 A203945
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 07 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 27 19:11 EDT 2024. Contains 372882 sequences. (Running on oeis4.)