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!)
A103513 Primes of the form primorial(P(k))/2-2^n with minimal n, n>=0, k>=2. 1
2, 13, 103, 1153, 15013, 255253, 4849843, 111546433, 3234846607, 100280245063, 3710369067401, 152125131763603, 6541380632280583, 307444891294245701, 16294579238595022363, 961380175077106319471, 58644190679703485491571 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
The Mathematica Program does not produce a(2). Conjecture: sequence is defined for all k>=2.
LINKS
EXAMPLE
P(2)/2=3, 3-2^0=2 is prime, so a(2)=2;
P(5)/2=1155, 1155-2^1=1153 is prime, so a(5)=1153;
MATHEMATICA
nmax = 2^8192; npd = 1; n = 2; npd = npd*Prime[n]; While[npd < nmax, tt = 2; cp = npd - tt; While[(cp > 1) && (! (PrimeQ[cp])), tt = tt*2; cp = npd - tt]; If[cp < 2, Print["*"], Print[cp]]; n = n + 1; npd = npd*Prime[n]]
CROSSREFS
Sequence in context: A125589 A007809 A259146 * A067024 A371583 A083062
KEYWORD
nonn
AUTHOR
Lei Zhou, Feb 15 2005
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 09:18 EDT 2024. Contains 371967 sequences. (Running on oeis4.)