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!)
A072920 a(n) = Sum_{k=1..n} A034693(k). 1
1, 2, 4, 5, 7, 8, 12, 14, 16, 17, 19, 20, 24, 26, 28, 29, 35, 36, 46, 48, 50, 51, 53, 56, 60, 62, 66, 67, 69, 70, 80, 83, 85, 88, 90, 91, 95, 100, 102, 103, 105, 106, 110, 112, 116, 117, 123, 125, 129, 131, 133, 134, 136, 138, 144, 146, 150, 151, 163, 164, 170, 175 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) appears to be asymptotic to (zeta(2)-1)*n*log(n) where zeta(2)-1 = Pi^2/6-1 = 0.6449... . Example: a(10^5)/10^5/log(10^5) = 0.6449(1)... .
MATHEMATICA
f[n_] := Module[{k = 1}, While[!PrimeQ[k*n + 1], k++]; k]; Accumulate[Table[f[n], {n, 1, 100}]] (* Amiram Eldar, May 05 2022 *)
PROG
(PARI) f(n) = if(n<0, 0, s=1; while(isprime(s*n+1)==0, s++); s); \\ A034693
a(n) = sum(k=1, n, f(k)); \\ Michel Marcus, May 05 2022
CROSSREFS
Sequence in context: A343267 A350417 A176193 * A330708 A107899 A032924
KEYWORD
nonn
AUTHOR
Benoit Cloitre, Aug 11 2002
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 06:34 EDT 2024. Contains 372230 sequences. (Running on oeis4.)