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!)
A341044 Numbers k such that A318996(k) is prime. 1
8, 9, 10, 14, 15, 21, 22, 25, 26, 33, 34, 39, 42, 46, 57, 62, 65, 66, 69, 72, 74, 76, 80, 82, 87, 91, 92, 93, 94, 95, 100, 106, 111, 116, 119, 121, 122, 129, 133, 134, 145, 146, 159, 162, 166, 172, 176, 177, 183, 184, 190, 194, 202, 203, 206, 208, 213, 214, 215, 219, 232, 236, 237, 238, 240, 243 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Contains 2*p for p in A023201 and 3*p for p in A023203.
LINKS
EXAMPLE
a(3) = 10 is a term because A318996(10) = 11 is prime.
MAPLE
f:= proc(n) local s, D, t;
D:= numtheory:-divisors(n);
s:= convert(D, `+`);
add(s mod t, t=D)
end proc:
select(t -> isprime(f(t)), [$1..1000]);
PROG
(PARI) f(n) = my(sn = sigma(n)); sumdiv(n, d, sn % d); \\ A318996
isok(k) = isprime(f(k)); \\ Michel Marcus, Feb 04 2021
CROSSREFS
Sequence in context: A164276 A154967 A271211 * A374122 A072381 A046415
KEYWORD
nonn
AUTHOR
J. M. Bergot and Robert Israel, Feb 03 2021
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 22 02:09 EDT 2024. Contains 375353 sequences. (Running on oeis4.)