cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A241190 Denominator of Sum_{i=1..n} 1/(prime(i)*prime(i+1)).

This page as a plain text file.
%I A241190 #26 Jul 09 2025 04:38:40
%S A241190 6,30,42,462,6006,102102,1939938,44618574,1293938646,40112098026,
%T A241190 1484147626962,60850052705442,2616552266334006,122977956517698282,
%U A241190 6517831695438008946,7255699434544198638,442597665507196116918,29654043588982139833506,2105437094817731928178926,153696907921694430757061598
%N A241190 Denominator of Sum_{i=1..n} 1/(prime(i)*prime(i+1)).
%C A241190 a(371) has 1003 decimal digits. - _Michael De Vlieger_, Jan 27 2016
%H A241190 Michael De Vlieger, <a href="/A241190/b241190.txt">Table of n, a(n) for n = 1..370</a>
%e A241190 1/6, 7/30, 11/42, 127/462, 1693/6006, 29243/102102, 561623/1939938, 13019431/44618574, 379503437/1293938646, 11809225121/40112098026, 438235268123/1484147626962, ...
%p A241190 g:= n-> add(1/(ithprime(i)*ithprime(i+1)),i=1..n);
%p A241190 t1:=[seq(g(n),n=1..20)];
%p A241190 t1a:=map(numer,t1); # A241189
%p A241190 t1b:=map(denom,t1); # A241190
%t A241190 Table[Denominator@ Sum[1/(Prime[i + 1] Prime@ i), {i, n}], {n, 20}] (* _Michael De Vlieger_, Jan 27 2016 *)
%o A241190 (PARI) a(n) = denominator(sum(k=1, n, 1/(prime(k)*prime(k+1)))); \\ _Michel Marcus_, Jan 27 2016
%Y A241190 Cf. A024451/A002110, A241189/A241190, A241191/A241192.
%K A241190 nonn,frac
%O A241190 1,1
%A A241190 _N. J. A. Sloane_, Apr 25 2014, based on a suggestion from _Timothy Varghese_