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!)
A084196 Number of primes q<prime(n) such that q+1 divides prime(n)+1. 6
0, 0, 1, 1, 3, 0, 2, 1, 5, 2, 2, 0, 3, 1, 6, 3, 6, 0, 1, 7, 0, 3, 6, 4, 1, 2, 2, 6, 0, 3, 3, 5, 2, 3, 3, 3, 0, 1, 9, 2, 9, 1, 8, 0, 3, 3, 1, 4, 6, 0, 3, 11, 0, 8, 2, 8, 6, 3, 0, 2, 1, 5, 3, 7, 0, 2, 1, 0, 5, 1, 2, 13, 2, 0, 3, 10, 3, 0, 2, 0, 11, 0, 11, 2, 5, 5, 6, 0, 4, 2, 6, 13, 2, 5, 2, 13, 4, 4, 1, 0, 1, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,5
COMMENTS
a(A049084(A082539(n)))=0, a(A049084(A084197(n)))>0, a(A049084(A084198(n)))=1;
LINKS
EXAMPLE
n=5, prime(5)=11: (11+1) mod (q+1) = 0 for 3 primes q<11: 2, 3,
and 5, therefore a(5)=3.
MATHEMATICA
Table[Count[Mod[p+1, Prime[Range[PrimePi[p]-1]]+1], 0], {p, Prime[Range[110]]}] (* Harvey P. Dale, Aug 11 2023 *)
PROG
(Haskell)
a084196 n = a084196_list !! (n-1)
a084196_list = f [] a000040_list where
f ps' (p:ps) = length [q | q <- ps', mod (p + 1) (q + 1) == 0] :
f (p : ps') ps where
-- Reinhard Zumkeller, Jan 06 2014
CROSSREFS
Sequence in context: A268464 A165066 A034389 * A295041 A359710 A127913
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, May 18 2003
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 01:19 EDT 2024. Contains 375418 sequences. (Running on oeis4.)