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

A360538
Number of multisets of n nonzero digits such that sum(digits) > product(digits).
3
0, 0, 9, 10, 11, 12, 15, 16, 18, 20, 22, 23, 25, 26, 29, 30, 31, 32, 35, 36, 38, 39, 41, 42, 44, 44, 47, 50, 51, 52, 54, 55, 56, 57, 60, 60, 60, 61, 63, 64, 65, 67, 70, 71, 73, 73, 74, 75, 77, 77, 78, 80, 81, 82, 84, 85, 86, 87, 89, 90, 91, 92, 95, 96, 97, 98, 101, 101
OFFSET
0,3
COMMENTS
Note that this does not represent the number of n-digit numbers that satisfy this property; that would require the computation of the permutations of each multiset.
LINKS
EXAMPLE
For n = 2, the a(2) = 9 solutions are [11,12,13,14,15,16,17,18,19].
For n = 3, the a(3) = 10 solutions are [111,112,113,114,115,116,117,118,119,122].
MAPLE
b:= proc(n, i, s, p) option remember; `if`(s+n*i<=p, 0,
`if`(n=0, 1, add(b(n-1, j, s+j, p*j), j=1..i)))
end:
a:= n-> b(n, 9, 0, 1):
seq(a(n), n=0..100); # Alois P. Heinz, Feb 11 2023
CROSSREFS
KEYWORD
nonn,look,base
AUTHOR
Charles Bershatsky, Feb 10 2023
STATUS
approved