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!)
A308404 a(n) = Q(A001359(n)), with Q(n) = (2^(n+2)-3n-8)/(n*(n+2)). 0
1, 3, 57, 1623, 2388747, 4989275679, 640689916425033, 1822252163947383837, 974834644028245238101857699, 55649241817444349958527998041, 36596034629737014817675324057147576383, 126872100333877939558050221738699065414707 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Aebi and Cairns proved that if (p, p+2) are twin primes, then 2^(p+2) == 3p+8 (mod p(p+2)). This sequence contains the quotients of this congruence.
LINKS
Christian Aebi and Grant Cairns, Catalan numbers, primes, and twin primes, Elemente der Mathematik, Vol. 63, No. 4 (2008), pp. 153-164.
EXAMPLE
a(2) = 3, because A001359(2) = 5 and Q(5) = (2^(5+2)-3*5-8)/(5*(5+2)) = 3.
MATHEMATICA
s={}; Do[If[PrimeQ[n] && PrimeQ[n+2], q = (2^(n+2)-3n-8)/(n(n+2)); AppendTo[s, q]], {n, 1, 1000}]; s
PROG
(PARI) lista(nn) = {forprime(p=2, nn, if (isprime(p+2), print1((2^(p+2)-3*p-8)/(p*(p+2)), ", "); ); ); } \\ Michel Marcus, Aug 04 2019
CROSSREFS
Sequence in context: A053725 A053774 A254570 * A009723 A069992 A012196
KEYWORD
nonn
AUTHOR
Amiram Eldar, Aug 04 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 July 14 12:58 EDT 2024. Contains 374318 sequences. (Running on oeis4.)