OFFSET
1,1
COMMENTS
A010888(a(n)) = 9, but not all multiples of 9 belong to the sequence: e.g. 144=16*9: A007953(144)=1+4+4=9, but A007953(144*2)=A007953(288)=2+8+8=18. - Reinhard Zumkeller, May 15 2002
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
MATHEMATICA
Select[Range[1000], Total[IntegerDigits[#]]==Total[IntegerDigits[ 2#]]&] (* Harvey P. Dale, Jul 22 2011 *)
PROG
(PARI) is(n)=sumdigits(n)==sumdigits(2*n) \\ Charles R Greathouse IV, Jun 17 2012
CROSSREFS
KEYWORD
easy,nonn,base
AUTHOR
Benoit Cloitre, May 09 2002
EXTENSIONS
Incorrect comment removed by Charles R Greathouse IV, Jun 17 2012
STATUS
approved