login
A309534
Numbers k such that A001414(k^2+1) is divisible by k.
3
1, 5, 34, 610, 698870988, 1134903170
OFFSET
1,2
COMMENTS
If A001519(i-1) and A001519(i+1) are prime (or 1), then since A001519(i)^2+1=A001519(i-1)*A001519(i+1) and A001519(i-1)+A001519(i+1)=3*A001519(i), A001519(i) is in the sequence. 1, 5, 34, 610 and 1134903170 arise in this way.
a(7) > 10^10. - Giovanni Resta, Aug 07 2019
EXAMPLE
34 is a member because 34^2+1=13*89 and 13+89=3*34.
MAPLE
filter:= proc(n) local F, t, y;
F:= ifactors(n^2+1)[2];
y:= add(t[1]*t[2], t=F);
y mod n = 0
end proc:
select(filter, [$1..10^6]);
PROG
(PARI) f(n) = (n=factor(n))[, 1]~*n[, 2]; \\ A001414
isok(k) = !(f(k^2+1) % k); \\ Michel Marcus, Aug 07 2019
CROSSREFS
Sequence in context: A211042 A086345 A295545 * A348375 A194687 A208098
KEYWORD
nonn,more
AUTHOR
J. M. Bergot and Robert Israel, Aug 06 2019
EXTENSIONS
a(5)-a(6) from Giovanni Resta, Aug 07 2019
STATUS
approved