OFFSET
1,1
COMMENTS
The first term having a repeated digit is 100642578.
LINKS
Colin Barker, Table of n, a(n) for n = 1..2000
MATHEMATICA
Select[Accumulate[Range[7000]], Length[Union[IntegerDigits[#]]]==8&] (* Harvey P. Dale, Feb 09 2019 *)
PROG
(PARI) s=[]; for(n=0, 7000, if(#vecsort(eval(Vec(Str(n*(n+1)/2))), , 8)==8, s=concat(s, n*(n+1)/2))); s
CROSSREFS
KEYWORD
nonn,base
AUTHOR
Colin Barker, Apr 28 2014
STATUS
approved