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!)
A194217 a(n) = A104272(n)-A080359(n). 4
0, 8, 4, 10, 10, 4, 6, 6, 0, 24, 0, 4, 18, 36, 12, 10, 6, 0, 36, 36, 34, 0, 0, 12, 0, 10, 24, 18, 34, 0, 14, 0, 22, 0, 0, 10, 0, 0, 18, 24, 0, 4, 60, 48, 10, 0, 0, 0, 0, 28, 24, 0, 0, 0, 16, 36, 36, 6, 8, 12, 36, 10, 0, 0, 24, 0, 22, 54, 30, 0, 14, 12, 18, 22 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Conjecture: Asymptotic density of nonzero terms is 3/4.
LINKS
J. Sondow, Ramanujan Prime. (MathWorld)
MATHEMATICA
nn = 100;
R = Table[0, {nn}]; s = 0;
Do[If[PrimeQ[k], s++]; If[PrimeQ[k/2], s--]; If[s < nn, R[[s+1]] = k], {k, Prime[3nn]}
];
A104272 = R = R + 1;
T = Table[0, {nn + 1}]; s = 0;
Do[If[PrimeQ[k], s++]; If[PrimeQ[k/2], s--]; If[s <= nn && T[[s+1]] == 0, T[[s+1]] = k], {k, Prime[3nn]}
];
A080359 = Rest[T];
A104272 - A080359 (* Jean-François Alcover, Aug 19 2018, after T. D. Noe *)
CROSSREFS
Sequence in context: A277781 A254767 A194184 * A239971 A082073 A244209
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Aug 18 2011
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 May 4 00:44 EDT 2024. Contains 372225 sequences. (Running on oeis4.)