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.

A119038 Numbers k such that the k-th triangular number contains only digits {0,1,4}.

Original entry on oeis.org

1, 4, 141, 144, 286, 9055, 16795, 44944, 90598, 167579, 15100424, 29678424, 45637726, 283245880, 5291767266, 1442505046119, 45042455839799, 151069595909375, 14429213707617199, 90999011435291333
Offset: 1

Views

Author

Giovanni Resta, May 10 2006

Keywords

Comments

Next term must be greater than 4.4*10^18.

Crossrefs

Cf. A000217, A119037. See A119034 for a table of cross-references.

Programs

  • Magma
    [n: n in [1..2*10^7] | Set(Intseq(Binomial(n+1, 2))) subset [0, 1, 4]]; // Vincenzo Librandi, Oct 07 2015
  • Mathematica
    Select[Range[2 10^7], Complement[IntegerDigits[Binomial[# + 1, 2]], {0, 1, 4}] == {}&] (* Vincenzo Librandi, Oct 07 2015 *)

Extensions

Two more terms from Max Alekseyev, Jul 11 2009