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!)
A320771 Primes p for which p-1 and p+1 are Niven numbers. 1
2, 3, 5, 7, 11, 19, 41, 71, 101, 109, 113, 151, 191, 199, 223, 229, 307, 401, 409, 449, 593, 701, 881, 911, 1009, 1013, 1091, 1129, 1231, 1301, 1303, 1451, 1559, 1811, 1999, 2029, 2089, 2213, 2281, 2311, 2351, 2399, 2531, 2609, 2711, 2753, 3037, 3079, 3109, 3221, 3251, 3329 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
All of the prime numbers in sequences A253213, A199684, A199687 are part of the sequence.
LINKS
EXAMPLE
For p = 11, p-1 = 10 and p + 1 = 12. 10 is divisible by 1 = 1 + 0, 12 is divisible by 3 = 1 + 2. Thus, p = 11 is a term.
For p = 229, p-1 = 228 and p + 1 = 230. 228 is divisible by 12 = 2 + 2 + 8, and 230 is divisible by 5 = 2 + 3 + 0. Thus, p = 229 is a term.
MATHEMATICA
nivenQ[n_] := Divisible[n, Total[IntegerDigits[n]]]; Select[Range[10000], PrimeQ[#] && nivenQ[#-1] && nivenQ[#+1] &] (* Amiram Eldar, Oct 31 2018 *)
nnQ[p_]:=Divisible[p, Total[IntegerDigits[p]]]; Select[Prime[Range[500]], AllTrue[#+{1, -1}, nnQ]&] (* Harvey P. Dale, Jul 19 2023 *)
PROG
(PARI) isniven(n) = frac(n/sumdigits(n)) == 0;
isok(p) = isprime(p) && isniven(p-1) && isniven(p+1); \\ Michel Marcus, Oct 22 2018
(GAP) Filtered([2..2400], p->IsPrime(p) and (p-1) mod List(List([1..p-1], ListOfDigits), Sum)[p-1]=0 and (p+1) mod List(List([1..p+1], ListOfDigits), Sum)[p+1]=0); # Muniru A Asiru, Oct 29 2018
(Magma) [p: p in PrimesUpTo(2000) | IsIntegral((p-1)/&+Intseq(p-1)) and IsIntegral((p+1)/&+Intseq(p+1))]; // Marius A. Burtea, Jan 06 2019
CROSSREFS
Sequence in context: A033274 A071062 A320725 * A002231 A087769 A308510
KEYWORD
nonn,base
AUTHOR
Marius A. Burtea, Oct 21 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 19 09:23 EDT 2024. Contains 371782 sequences. (Running on oeis4.)