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!)
A271186 Odd integers k such that k^k + 1 is the sum of 2 nonzero squares. 1
1, 9, 17, 25, 49, 73, 81, 89, 97, 121 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
EXAMPLE
9 is a term because 9^9 + 1 = 1457^2 + 19629^2.
MATHEMATICA
Select[Range[1, 25, 2], Length[PowersRepresentations[#^# + 1, 2, 2] /. {0, _} -> Nothing] > 0 &] (* Michael De Vlieger, Apr 01 2016 *)
PROG
(PARI) a014566(n) = n^n+1;
isA000404(n) = { for( i=1, #n=factor(n)~%4, n[1, i]==3 && n[2, i]%2 && return); n && ( vecmin(n[1, ])==1 || (n[1, 1]==2 && n[2, 1]%2))}
for(n=1, 1e2, if(isA000404(a014566(n)) && n%2 == 1, print1(n, ", ")));
CROSSREFS
Sequence in context: A211432 A211422 A035198 * A253705 A056233 A260264
KEYWORD
nonn,more
AUTHOR
Altug Alkan, Apr 01 2016
EXTENSIONS
a(6)-a(10) from Jinyuan Wang, Aug 14 2022
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 16 05:35 EDT 2024. Contains 371697 sequences. (Running on oeis4.)