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!)
A309534 Numbers k such that A001414(k^2+1) is divisible by k. 3
1, 5, 34, 610, 698870988, 1134903170 (list; graph; refs; listen; history; text; internal format)
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
LINKS
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

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 August 25 14:15 EDT 2024. Contains 375439 sequences. (Running on oeis4.)