OFFSET
0,3
COMMENTS
Notice that all listed terms are powers of 2 except for the 10th, 20th and 30th. It would be interesting to know whether this pattern continues. Note: Various sources give differing values for the Euler numbers. A000364 gives {1,1,5,61,1385,50521,2702765,199360981,19391512145,...}, whereas Mathematica gives {1,0,-1,0,5,0,-61,0,1385,0,-50521,...}.
LINKS
Sean A. Irvine, Table of n, a(n) for n = 0..86
EXAMPLE
E(4) = 1385 has divisors {1,5,277,1385}, so a(4) = 4.
MAPLE
a:= n-> numtheory[tau](abs(euler(2*n))):
seq(a(n), n=0..30); # Alois P. Heinz, Mar 03 2023
MATHEMATICA
a ={}; For[n=0, n<=33, n++, {Eu=EulerE[2*n]; L=Length[Divisors[Eu]]; a=Append[a, L]}]; a
CROSSREFS
KEYWORD
nonn
AUTHOR
John W. Layman, May 06 2005
EXTENSIONS
a(34)-a(49) from Robert G. Wilson v, May 09 2005
a(46) corrected and more terms from Sean A. Irvine, Mar 03 2023
STATUS
approved