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

A152983
Number of divisors of Motzkin number A001006(n).
3
1, 1, 2, 3, 3, 4, 4, 2, 4, 4, 6, 8, 2, 8, 24, 18, 4, 16, 8, 12, 16, 24, 48, 72, 12, 8, 6, 16, 8, 16, 8, 12, 4, 16, 64, 12, 2, 8, 8, 8, 8, 24, 96, 96, 6, 24, 72, 48, 24, 32, 128, 96, 16, 8, 8, 8, 16, 128, 60, 192, 6, 32, 32, 96, 8, 96, 512, 36, 24, 16, 24, 384, 24, 96, 144, 48, 64, 64, 32
OFFSET
0,3
LINKS
FORMULA
a(n) = A000005(A001006(n)).
EXAMPLE
a(5)=4 because the Motzkin number M(5)=21 has 4 divisors: 1,3,7 and 21. - Emeric Deutsch, Jan 14 2009
MAPLE
with(numtheory): M := proc (n) options operator, arrow: (sum((-1)^j*binomial(n+1, j)*binomial(2*n-3*j, n), j = 0 .. floor((1/3)*n)))/(n+1) end proc: seq(tau(M(n)), n = 0 .. 82); # Emeric Deutsch, Jan 14 2009
MATHEMATICA
mot[0] = 1; mot[n_] := mot[n] = mot[n - 1] + Sum[mot[k] * mot[n - 2 - k], {k, 0, n - 2}]; Table[DivisorSigma[0, mot[n]], {n, 0, 50}] (* Amiram Eldar, Nov 26 2019 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Omar E. Pol, Dec 20 2008
EXTENSIONS
Extended by Emeric Deutsch, Jan 14 2009
STATUS
approved