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

A317986
Odd numbers k > 1 such that k == 1 (mod 4), Product_{n>=1} (a(n)-1)/(a(n)+1) = Pi/4, and Limit_{n->oo} a(n+1)/a(n) = 3, where a(1) = 13 (see comments).
1
13, 37, 89, 277, 821, 2465, 7389, 22161, 66469, 199389, 598165, 1794469, 5383413, 16150225, 48450673, 145352013, 436056017, 1308168049, 3924504145
OFFSET
1,1
COMMENTS
For odd numbers {5,7,9,11,13,.,k,..} we define the product (k-1)/(k+1) if k == 1 (mod 4), otherwise (k+1)/(k-1). Then (2/3)*(4/3)*(4/5)*(6/5)*(6/7)*(8/7)*... = Pi/4 = 0.78539816339744... < 1, based on the Wallis product. This sequence answers the question, what terms must be deleted such that the product of remaining terms equals 1?.
Since Pi/4 < 1 the terms that must be deleted to make the product equal 1 are all 1 (mod 4). These are the least possible, and apparently their product is Pi/4. The remaining sequence which has product 1 contains more terms that are 3 (mod 4) than 1 (mod 4).
PROG
(PARI) {
pp=1.0;
forstep(n=5, 10^10, 4,
p=(n-1)/(n+1);
n2=n+2; p2=(n2+1)/(n2-1);
pp*=p2;
if(pp>1, pp*=p, print1(n", "))
)
}
CROSSREFS
Cf. A016813.
Sequence in context: A124706 A145990 A089528 * A043190 A043970 A183339
KEYWORD
nonn,more
AUTHOR
Dimitris Valianatos, Jan 03 2019
STATUS
approved