OFFSET
1,3
COMMENTS
Definition changed to run from bases 2 to n instead of 1 to n, in order to reflect the sequence numbers, correctly. - suggested by Michel Marcus and changed by the author, Jul 19 2013
LINKS
Hieronymus Fischer, Table of n, a(n) for n = 1..200
FORMULA
a(n) = Product_{p=2..n} ds_p(n) where ds_p = digital sum base p.
a(n) = Product_{p=2..n} (n-(p-1)*Sum_{k>0} floor(n/p^k)).
[Both formulas corrected in accordance with the changed definition by the author; Jul 19 2013]
EXAMPLE
5 = 11111_1 = 101_2 = 12_3 = 11_4 = 10_5. Thus a(5) = ds_1(5)*ds_2(5)*ds_3(5)*ds_4(5)*ds_5(5) = 5*2*3*2*1 = 60. - Michel Marcus, Jul 15 2013
MATHEMATICA
Table[Times @@ Map[Total@ IntegerDigits[n, #] &, Range[2, n]], {n, 24}] (* Michael De Vlieger, Jan 03 2017 *)
PROG
(PARI) a(n) = prod(k=2, n, sumdigits(n, k)); \\ Michel Marcus, Jun 13 2022
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Hieronymus Fischer, Jul 05 2007
STATUS
approved