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

A241791
Triangular numbers which have one or more occurrences of exactly eight different digits.
7
10348975, 10623745, 10725396, 10869453, 10934826, 12347965, 12357906, 12487503, 12647935, 12673095, 12784096, 13862745, 14756028, 14826735, 15237960, 15298746, 15304278, 15879430, 16247850, 16384950, 17084935, 17502486, 17543926, 17829406
OFFSET
1,1
COMMENTS
The first term having a repeated digit is 100642578.
LINKS
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
KEYWORD
nonn,base
AUTHOR
Colin Barker, Apr 28 2014
STATUS
approved