OFFSET
1,4
COMMENTS
It appears that any odd number N = 2n+1 > 1 (and also N = 2, hence all primes, see A260869) can be written as the sum of two positive integers such that the sum of their squares is prime. For an even number > 2 this is obviously not possible since k and 2n-k have the same parity and therefore the sum of their squares is even.
The record values 1, 2, 3, 5, 6, 7, 10, 13, 16, 29, 30, 37, 40, 41, 49, 55, 64, 67, 68, 74, 85, 88, 106, 128, ... occur for indices n (half of the odd numbers 2n+1) 1, 4, 6, 15, 35, 54, 83, 121, 172, 281, 936, 1093, 1150, 1240, 3121, 4126, 5116, 6793, 11935, 12556, 18238, 32710, 33343, 57256, ...
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
lk[n_]:=Module[{k=1}, While[!PrimeQ[k^2+(2n+1-k)^2], k++]; k]; Array[lk, 100] (* Harvey P. Dale, May 31 2017 *)
PROG
(PARI) A260870(n)=for(k=1, (n=2*n+1)\2, isprime(k^2+(n-k)^2)&&return(k))
CROSSREFS
KEYWORD
nonn
AUTHOR
M. F. Hasler, Aug 09 2015
STATUS
approved