OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
EXAMPLE
288 is a term as the arithmetic mean of the digits is (2+8+8)/3 = 6.
MAPLE
F:= proc(m, s)
option remember;
# list of all m-digit numbers with sum of digits s
if s > 9*m or s < 0 then return [] fi;
if m = 1 then return [s] fi;
[seq(seq(op(map(`+`, procname(j, s-i), 10^(m-1)*i)), j=1..m-1), i=1..min(9, s))]
end proc:
seq(op(F(m, 6*m)), m=1..3); # Robert Israel, Jan 27 2016
MATHEMATICA
Select[Range[1000], Total[IntegerDigits[#]]==6*IntegerLength[#]&] (* Harvey P. Dale, Dec 20 2014 *)
PROG
(PARI) isok(n) = {digs = digits(n, 10); return(6*#digs == sum(k=1, #digs, digs[k])); } \\ Michel Marcus, Jul 31 2013
(Magma) [n: n in [1..1000] | &+Intseq(n) eq 6*#Intseq(n)]; // Vincenzo Librandi, Jan 28 2016
CROSSREFS
KEYWORD
base,easy,nonn
AUTHOR
Amarnath Murthy, May 03 2001
EXTENSIONS
More terms from Larry Reeves (larryr(AT)acm.org), May 16 2001
STATUS
approved