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.

A065470 Decimal expansion of Product_{p prime} (1 - 1/(p*(p^2-1))).

This page as a plain text file.
%I A065470 #15 Apr 22 2025 10:56:17
%S A065470 7,8,8,1,6,2,5,0,0,0,3,0,2,2,0,7,0,0,5,7,6,9,4,9,5,9,3,0,5,3,5,0,3,9,
%T A065470 6,8,9,5,6,1,6,3,6,8,4,6,9,3,5,6,9,3,0,3,3,5,2,5,1,4,2,9,2,1,2,7,5,4,
%U A065470 1,3,2,9,4,1,9,7,8,5,4,6,4,0,4,2,4,8,6,5,4,4,0,6,9,8,8,1,2,3
%N A065470 Decimal expansion of Product_{p prime} (1 - 1/(p*(p^2-1))).
%H A065470 G. Niklasch, <a href="/A001692/a001692.html">Some number theoretical constants: 1000-digit values</a>. [Cached copy]
%e A065470 0.7881625000302207005769495930535...
%t A065470 $MaxExtraPrecision = 600; digits = 98; terms = 600; P[n_] := PrimeZetaP[n];
%t A065470 LR = Join[{0, 0, 0}, LinearRecurrence[{0, 2, 1, -1, -1}, {-3, 0, -5, -3, -7}, terms + 10]]; r[n_Integer] := LR[[n]]; Exp[NSum[r[n]*P[n - 1]/(n - 1), {n, 3, terms}, NSumTerms -> terms, WorkingPrecision -> digits + 10]] // RealDigits[#, 10, digits]& // First (* _Jean-François Alcover_, Apr 18 2016 *)
%o A065470 (PARI) prodeulerrat(1 - 1/(p*(p^2-1))) \\ _Amiram Eldar_, Mar 13 2021
%Y A065470 Cf. A072801, A381481.
%K A065470 cons,nonn
%O A065470 0,1
%A A065470 _N. J. A. Sloane_, Nov 19 2001