login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A065426
Incrementally larger terms in the continued fraction (A065645) for the twin prime constant (A005597).
0
0, 1, 16, 18, 21, 405, 1199, 2301, 19965
OFFSET
1,3
MATHEMATICA
(* tpc copied from Niklasch reference *)
cof = ContinuedFraction[tpc, 969]; a = -1; k = 1; Do[ While[ cof[[k]] <= a, k++ ]; a = cof[[k]]; Print[a], {n, 1, 9} ]
PROG
(PARI) \\ Increasing lprec to 30000 gives no further term beyond 19965.
a065246(lprec) = {localprec(lprec); my (m=-1, T=prodeulerrat(1-1/(p-1)^2, 1, 3), c=contfrac(T)); for (k=1, #c, if (c[k]>m, print(c[k], ", "); m=c[k]))};
a065246(1000) \\ Hugo Pfoertner, Aug 01 2023
CROSSREFS
Cf. A005597 and A065645.
Sequence in context: A161874 A095953 A084800 * A308607 A097746 A081258
KEYWORD
nonn,hard,more
AUTHOR
Robert G. Wilson v, Nov 15 2001
STATUS
approved