OFFSET
0,4
COMMENTS
The definition yields integers according to the formula in A000111.
The next term a(7) is too large to include. - N. J. A. Sloane, Mar 14 2011
LINKS
Alois P. Heinz, Table of n, a(n) for n = 0..8
MATHEMATICA
t = Range[0, 65]! CoefficientList[ Series[ Sec@x + Tan@x, {x, 0, 65}], x]; f[n_] := (Rest[t][[2^n]] - 1)/2^n; Array[f, 7, 0] (* Robert G. Wilson v, Sep 04 2010 *)
PROG
(Python)
from sympy import euler
def A180417(n): return euler(1<<n)-1>>n if n > 1 else 0 # Chai Wah Wu, Apr 18 2023
CROSSREFS
KEYWORD
nonn
AUTHOR
Vladimir Shevelev, Sep 03 2010
EXTENSIONS
Two more terms from R. J. Mathar, Sep 19 2010
a(5) and a(6) from Robert G. Wilson v, Sep 04 2010
STATUS
approved