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”).

A323551
Numerators of the partial Euler product representation of Pi/4.
1
3, 15, 105, 385, 5005, 85085, 323323, 7436429, 30808063, 955049953, 35336848261, 1448810778701, 5663533044013, 266186053068611, 1085220062510491, 64027983688118969, 3905707004975257109, 15393080549020130959, 1092908718980429298089, 79782336485571338760497
OFFSET
1,1
COMMENTS
The Euler product representation follows from the classical Leibniz series representation of Pi/4 interpreted as a Dirichlet L-series using the unique non-principal Dirichlet characters modulo 4, whose (infinite) Euler product representation can be written as (3/4) * (5/4) * (7/8) * (11/12) * (13/12) * ..., with each term in the product being the ratio of a prime number to its nearest multiple of 4. The sequence consists of the numerators of the partial products.
EXAMPLE
a(3) = 105 = numerator((3/4) * (5/4) * (7/8)).
PROG
(PARI) a(n) = numerator(prod(k=2, n+1, my(p=prime(k)); if(p%4==1, p/(p-1), p/(p+1)))); \\ Daniel Suteu, Jan 22 2019
CROSSREFS
Cf. A003881 (Decimal expansion of Pi/4).
Cf. A101455 (Dirichlet L-series of The Non-Principal Dirichlet Characters Mod 4).
Cf. A323552 (Denominators of the Partial Euler Product Representation of Pi/4).
Cf. A236436 (Denominators of the Product (1 + 1/p), where p is prime).
Cf. A002144 (Primes of the form 4n+1; Pythagorean primes).
Cf. A002145 (Primes of the form 4n+3).
Sequence in context: A220747 A088989 A001801 * A267840 A067546 A015682
KEYWORD
nonn,frac
AUTHOR
Anthony Hernandez, Jan 16 2019
EXTENSIONS
More terms from Daniel Suteu, Jan 22 2019
STATUS
approved