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!)
A320518 Zumkeller primes: k is prime and k + 1 is Zumkeller. 3
5, 11, 19, 23, 29, 41, 47, 53, 59, 79, 83, 89, 101, 103, 107, 113, 131, 137, 139, 149, 167, 173, 179, 191, 197, 223, 227, 233, 239, 251, 257, 263, 269, 271, 281, 293, 307, 311, 317, 347, 349, 353, 359, 367, 379, 383, 389, 401, 419, 431, 439, 443, 461, 463 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
isZumkellerPrime := n -> isprime(n) and isZumkeller(n+1):
A320518_list := upto -> select(isZumkellerPrime, [$1..upto]): A320518_list(500);
MATHEMATICA
ZumkellerQ[n_] := Module[{d = Divisors[n], ds, x}, ds = Total[d]; If[OddQ[ds], False, SeriesCoefficient[Product[1 + x^i, {i, d}], {x, 0, ds/2}] > 0]];
Select[Prime[Range[100]], ZumkellerQ[# + 1]&] (* Jean-François Alcover, Mar 01 2019 *)
CROSSREFS
Sequence in context: A056996 A102184 A290751 * A084720 A032674 A117089
KEYWORD
nonn
AUTHOR
Peter Luschny, Oct 14 2018
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 25 08:27 EDT 2024. Contains 371964 sequences. (Running on oeis4.)