OFFSET
0,3
COMMENTS
It appears that a(n+2) = 2*a(n) if n is in A238526. - Michel Lagneau, Dec 07 2015
LINKS
Amiram Eldar, Table of n, a(n) for n = 0..10000
EXAMPLE
a(5) = 4 since 5!! = 15 and the divisors are 1, 3, 5 and 15.
a(6) = 10 because 6!! = A006882(6) = 48 has precisely ten distinct divisors: 1, 2, 3, 4, 6, 8, 12, 16, 24, 48. - Michel Lagneau, Dec 07 2016
MAPLE
MATHEMATICA
DivisorSigma[0, Range[50]!! ]
PROG
(PARI) df(n) = if( n<0, 0, my(E); E = exp(x^2 / 2 + x * O(x^n)); n! * polcoeff( 1 + E * x * (1 + intformal(1 / E)), n)); \\ A006882
vector(100, n, n--; numdiv(df(n))) \\ Altug Alkan, Dec 07 2015
CROSSREFS
KEYWORD
easy,nonn
AUTHOR
Giovanni Resta, Feb 07 2006
STATUS
approved