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!)
A241190 Denominator of Sum_{i=1..n} 1/(prime(i)*prime(i+1)). 5
6, 30, 42, 462, 6006, 102102, 1939938, 44618574, 1293938646, 40112098026, 1484147626962, 60850052705442, 2616552266334006, 122977956517698282, 6517831695438008946, 7255699434544198638, 442597665507196116918, 29654043588982139833506, 2105437094817731928178926, 153696907921694430757061598 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(371) has 1003 decimal digits. - Michael De Vlieger, Jan 27 2016
LINKS
EXAMPLE
1/6, 7/30, 11/42, 127/462, 1693/6006, 29243/102102, 561623/1939938, 13019431/44618574, 379503437/1293938646, 11809225121/40112098026, 438235268123/1484147626962, ...
MAPLE
g:= n-> add(1/(ithprime(i)*ithprime(i+1)), i=1..n);
t1:=[seq(g(n), n=1..20)];
t1a:=map(numer, t1); # A241189
t1b:=map(denom, t1); # A241190
MATHEMATICA
Table[Denominator@ Sum[1/(Prime[i + 1] Prime@ i), {i, n}], {n, 20}] (* Michael De Vlieger, Jan 27 2016 *)
PROG
(PARI) a(n) = denominator(sum(k=1, n, 1/(prime(k)*prime(k+1)))); \\ Michel Marcus, Jan 27 2016
CROSSREFS
Sequence in context: A291566 A326580 A070195 * A276933 A110175 A249676
KEYWORD
nonn,frac
AUTHOR
N. J. A. Sloane, Apr 25 2014, based on a suggestion from Timothy Varghese.
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 24 20:08 EDT 2024. Contains 371963 sequences. (Running on oeis4.)