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

A309766
Digits of the 2-adic integer arctan(4).
3
0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 0, 1, 0, 0, 0, 1, 0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0, 1, 0, 0, 1, 1, 0, 1, 1, 1, 1, 1, 0, 1, 0, 0, 0, 1, 1, 1, 1, 0, 0, 1, 0, 1, 0, 1, 0, 0, 1, 0, 1, 1, 0, 0, 1, 1, 1, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1
OFFSET
0
COMMENTS
arctan(x) = x - x^3/3 + x^5/5 - x^7/7 + ...
FORMULA
a(n) = (A309756(n+1) - A309756(n))/2^n.
EXAMPLE
arctan(4) = ...0100000001010001001111101100100101000100.
PROG
(PARI) a(n) = lift(sum(i=0, (n-2)/4, Mod((-1)^i*4^(2*i+1)/(2*i+1), 2^(n+1))))\2^n
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Jianing Song, Aug 16 2019
STATUS
approved