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!)
A274826 Denominator of the n-th partial sum of the reciprocals of the successive prime gaps. 2
1, 2, 1, 4, 4, 1, 2, 4, 12, 12, 12, 6, 3, 12, 4, 12, 12, 12, 6, 3, 2, 4, 12, 24, 24, 24, 24, 24, 24, 168, 168, 168, 168, 840, 840, 280, 840, 840, 840, 280, 280, 280, 280, 280, 280, 840, 840, 840, 840, 840, 840, 840, 840, 280, 840, 840, 840, 280, 280, 280, 280, 280, 280, 280 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) = Denominator(Sum_{i=1..n} 1/(prime(i+1)-prime(i)).
a(n) = Denominator(Sum_{i=1..n} 1/A001223(i)).
MAPLE
G:= [seq(1/(ithprime(n+1)-ithprime(n)), n=1..100)]:
L:= ListTools:-PartialSums(G):
map(denom, L); # Robert Israel, Jan 22 2020
MATHEMATICA
nmax=64; Table[Sum[1/(Prime[j + 1] - Prime[j]), {j, 1, n}], {n, 1, nmax}]//Denominator;
PROG
(PARI) a(n) = denominator(sum(i=1, n, 1/(prime(i+1)-prime(i)))) \\ Felix Fröhlich, Jul 07 2016
CROSSREFS
Sequence in context: A181878 A256791 A274980 * A129862 A137593 A009949
KEYWORD
nonn,frac,look
AUTHOR
Andres Cicuttin, Jul 07 2016
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 16 10:45 EDT 2024. Contains 371709 sequences. (Running on oeis4.)