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

A104352
Number of divisors of A104350(n).
2
1, 2, 4, 6, 12, 18, 36, 48, 64, 96, 192, 240, 480, 720, 960, 1200, 2400, 2880, 5760, 7200, 9600, 14400, 28800, 33600, 40320, 60480, 69120, 86400, 172800, 201600, 403200, 483840, 645120, 967680, 1161216, 1306368, 2612736, 3919104, 5225472, 5971968
OFFSET
1,2
FORMULA
a(n) = A000005(A104350(n)).
MATHEMATICA
DivisorSigma[0, FoldList[Times, Array[FactorInteger[#][[-1, 1]] &, 50]]] (* Amiram Eldar, Apr 08 2024 *)
PROG
(PARI) gpf(n) = {my(p = factor(n)[, 1]); p[#p]; }
a(n) = numdiv(prod(k = 2, n, gpf(k))); \\ Amiram Eldar, Apr 08 2024
CROSSREFS
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Mar 06 2005
EXTENSIONS
Offset changed to 1 and a(1) prepended by Amiram Eldar, Apr 08 2024
STATUS
approved