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!)
A267415 Integers n such that n^n = (x^3 + y^3) / 2 where x, y > 0, is soluble. 2
0, 1, 3, 6, 8, 9, 12, 15, 18, 21, 24, 27, 30, 33, 36, 39, 42, 45, 48, 51, 54, 57, 60, 63, 64, 66, 69, 72, 75, 76, 78, 81, 84, 87, 90, 93, 96, 99, 102, 105, 108, 111, 112, 114, 117, 120, 123, 125, 126, 129, 132, 135, 138, 141, 144, 147, 150, 153, 156, 159, 162 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Is there a solution n such that n^n = (x^3 + y^3) / 2 where x > y > 0?
The answer to the above question is yes: 76^76 = (523974089123227128080087214816032969930445946880^3 + 314384453473936276848052328889619781958267568128^3)/2. Other examples include 112^112 and 172^172. - Chai Wah Wu, Jan 18 2016
LINKS
EXAMPLE
1 is a term because 1^1 = 1 = (1^3 + 1^3) / 2.
3 is a term because 3^3 = 27 = (3^3 + 3^3) / 2.
8 is a term because 8^8 = 2^24 = (256^3 + 256^3) / 2.
MATHEMATICA
Select[Range@ 24, Resolve[Exists[{x, y}, And[Reduce[#^# == (x^3 + y^3)/2, {x, y}, Integers], x > 0, y > 0]]] &] (* Michael De Vlieger, Jan 15 2016 *)
PROG
(PARI) T=thueinit('z^3+1);
is(n) = #select(v->min(v[1], v[2])>0, thue(T, n))>0;
for(n=0, 28, if(is(2*n^n), print1(n, ", ")));
CROSSREFS
Sequence in context: A185717 A189637 A182338 * A140516 A310140 A231006
KEYWORD
nonn
AUTHOR
Altug Alkan, Jan 14 2016
EXTENSIONS
a(13) from Michael De Vlieger, Jan 15 2016
a(14)-a(60) from Chai Wah Wu, Jan 18 2016
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 18 22:18 EDT 2024. Contains 371782 sequences. (Running on oeis4.)