cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A241791 Triangular numbers which have one or more occurrences of exactly eight different digits.

Original entry on oeis.org

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

Views

Author

Colin Barker, Apr 28 2014

Keywords

Comments

The first term having a repeated digit is 100642578.

Crossrefs

Programs

  • Mathematica
    Select[Accumulate[Range[7000]],Length[Union[IntegerDigits[#]]]==8&] (* Harvey P. Dale, Feb 09 2019 *)
  • 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