OFFSET
1,1
LINKS
Harvey P. Dale, Table of n, a(n) for n = 1..1000
MATHEMATICA
Do[ a = IntegerDigits[ n ]; l = Length[ a ]; e = o = {}; Do[ o = Append[ o, a[ [ 2k - 1 ] ] ], {k, 1, l/2 + .5} ]; Do[ e = Append[ e, a[ [ 2k ] ] ], {k, 1, l/2} ]; If[ Abs[ Apply[ Plus, o ] - Apply[ Plus, e ] ] == 3, Print[ n ] ], {n, 1, 1000} ]
fdsdQ[n_]:=Module[{idn=IntegerDigits[n], o, e}, o=Take[idn, {1, -1, 2}]; e= Take[ idn, {2, -1, 2}]; Abs[Total[o]-Total[e]]==3]; Select[Range[400], fdsdQ] (* Harvey P. Dale, Nov 01 2011 *)
CROSSREFS
KEYWORD
nonn,base,easy
AUTHOR
Robert G. Wilson v, May 10 2001
STATUS
approved