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!)
A262392 a(n) = A007504(n) + A010693(n). 0
2, 5, 7, 13, 19, 31, 43, 61, 79, 103, 131, 163, 199, 241, 283, 331, 383, 443, 503, 571, 641, 715, 793, 877, 965, 1063, 1163, 1267, 1373, 1483, 1595, 1723, 1853, 1991, 2129, 2279, 2429, 2587, 2749, 2917, 3089, 3269, 3449, 3641, 3833, 4031, 4229 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,1
COMMENTS
Sequence is interesting because of the fact that a(n) is a prime number for n = 0..20.
Main inspiration of sequence was indices of prime numbers in A036439 and A227547.
LINKS
FORMULA
a(n) = Sum_{k=1..n} prime(k) + n mod 2 + 2 for n>0, a(0)=2 (from Pari code).
EXAMPLE
a(0) = A007504(0) + A010693(0) = 0 + 2 = 2.
a(1) = A007504(1) + A010693(1) = 2 + 3 = 5.
a(2) = A007504(2) + A010693(2) = 5 + 2 = 7.
a(3) = A007504(3) + A010693(3) = 10 + 3 = 13.
a(4) = A007504(4) + A010693(4) = 17 + 2 = 19.
a(5) = A007504(5) + A010693(5) = 28 + 3 = 31.
MATHEMATICA
s = Accumulate@ Prime@ Range@ 1200; {2}~Join~Table[s[[n]] + If[OddQ@ n, 3, 2], {n, 46}] (* _Michael De Vlieger_, Sep 21 2015 *)
PROG
(PARI) a(n) = sum(k=1, n, prime(k)) + (n%2) + 2;
vector(50, n, a(n-1))
CROSSREFS
Sequence in context: A275011 A094743 A175075 * A056985 A082182 A032719
KEYWORD
nonn,easy
AUTHOR
_Altug Alkan_, Sep 21 2015
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 11 21:36 EDT 2024. Contains 374234 sequences. (Running on oeis4.)