OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..10000
EXAMPLE
14 is a term since its divisors are {1, 2, 7, 14}, their representations in factorial base (A007623) are {1, 10, 101, 210}, and their sum of sums of digits is 1 + (1 + 0) + (1 + 0 + 1) + (2 + 1 + 0) = 7 which is a divisor of 14.
MATHEMATICA
fctDigSum[n_] := Module[{s=0, i=2, k=n}, While[k > 0, k = Floor[n/i!]; s = s + (i-1)*k; i++]; n-s]; fctDivDigDum[n_] := DivisorSum[n, fctDigSum[#] &]; Select[Range[10^3], Divisible[#, fctDivDigDum[#]] &] (* after Jean-François Alcover at A034968 *)
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Amiram Eldar, Mar 29 2020
STATUS
approved