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.

Showing 1-4 of 4 results.

A062691 Triangular numbers that contain exactly 2 different digits.

Original entry on oeis.org

10, 15, 21, 28, 36, 45, 78, 91, 171, 300, 595, 990, 1711, 2211, 3003, 5050, 5151, 5565, 5995, 6555, 8778, 10011, 66066, 222111, 255255, 333336, 500500, 600060, 828828, 887778, 1188111, 5656566, 22221111, 50005000, 51151555, 88877778, 2222211111, 5000050000
Offset: 1

Views

Author

Erich Friedman, Jul 04 2001

Keywords

Comments

For n > 2, A309597(n) is a term. - Seiichi Manyama, Sep 15 2019
The other known infinite families of terms are A037156(n) for n > 1, A319170(n), and A383942(n). - David Radcliffe, Aug 25 2025

Examples

			300 is triangular and contains the digits 0 and 3.
		

Crossrefs

Cf. A000217, A045914 (all digits the same), A213516, A213518, A309597.

Programs

  • Mathematica
    Select[Accumulate[Range[14000]],Count[DigitCount[#],Except[0]]==2&] (* Harvey P. Dale, Nov 27 2011 *)
  • PARI
    for(k=0, 1e5, if(#Set(digits(j=k*(k+1)/2))==2, print1(j", "))) \\ Seiichi Manyama, Sep 15 2019

A213516 Triangular numbers having only 1 or 2 different digits in base 10.

Original entry on oeis.org

0, 1, 3, 6, 10, 15, 21, 28, 36, 45, 55, 66, 78, 91, 171, 300, 595, 666, 990, 1711, 2211, 3003, 5050, 5151, 5565, 5995, 6555, 8778, 10011, 66066, 222111, 255255, 333336, 500500, 600060, 828828, 887778, 1188111, 5656566, 22221111, 50005000, 51151555, 88877778
Offset: 1

Views

Author

T. D. Noe, Jun 21 2012

Keywords

Comments

The list of triangular numbers containing only one digit (A045914) is finite. This list is infinite because numbers like 8888777778, 222222111111, and 500000500000 occur an infinite number of times.
A309597 is a subsequence. - Seiichi Manyama, Sep 14 2019

Crossrefs

Cf. A119033 (has list of sequences related to digits in triangular numbers).

Programs

  • Magma
    [n*(n+1)/2: n in [0..10^5] | #Set(Intseq(n*(n+1) div 2)) le 2]; // Bruno Berselli, Oct 27 2012
  • Mathematica
    t = {}; Do[tri = n*(n+1)/2; If[Length[Union[IntegerDigits[tri]]] <= 2, AppendTo[t, tri]], {n, 0, 10^5}]; t
    Select[Accumulate[Range[0,20000]],Count[DigitCount[#],0]>7&] (* Harvey P. Dale, Sep 03 2020 *)

A227218 Smallest triangular number ending in n ones.

Original entry on oeis.org

1, 1711, 105111, 6271111, 664611111, 222222111111, 22222221111111, 2222222211111111, 2517912111111111, 18428299161111111111, 2222222222211111111111, 222222222222111111111111, 22222222222221111111111111, 1090161504430911111111111111
Offset: 1

Views

Author

Shyam Sunder Gupta, Sep 19 2013

Keywords

Comments

If a triangular number ends in like digits then it can only end in 0's, 1's, 5's or 6's.
The sequence is infinite because the sequence of triangular numbers 21, 2211, 222111, 22221111, ... (A319170) is infinite.

Examples

			a(2) = 1711 because 1711 is the smallest triangular number ending in  2 '1's.
		

Crossrefs

Programs

  • Mathematica
    t = {}; Do[Do[x = n*(n + 1)/2;If[Mod[x, 10^m] == (10^m - 1)/9, AppendTo[t, x]; Break[]], {n, 1, 10^m}], {m, 1, 10}]; t
    a[n_] := Block[{x, y, s}, s = y /. List@ ToRules[ Reduce[(y+1)* y/2 == x*10^n +(10^n - 1)/9 && y > 0 && x >= 0, {y, x}, Integers] /. C[1] -> 0]; Min[s*(s + 1)/2]]; Array[a, 20] (* Giovanni Resta, Sep 20 2013 *)
  • Python
    from sympy import sqrt_mod_iter
    def A227218(n):
        k, a = 10**n<<1, (10**n-1)//9<<1
        m = (a<<2)+1
        return min(b for b in ((d>>1)*((d>>1)+1) for d in sqrt_mod_iter(m, k) if d&1) if b%k==a)>>1 # Chai Wah Wu, May 04 2024

Extensions

a(11)-a(14) from Giovanni Resta, Sep 20 2013

A383942 a(n) = (8*10^(2n) - 10^(n+1) + 2) / 9.

Original entry on oeis.org

78, 8778, 887778, 88877778, 8888777778, 888887777778, 88888877777778, 8888888777777778, 888888887777777778, 88888888877777777778, 8888888888777777777778, 888888888887777777777778, 88888888888877777777777778, 8888888888888777777777777778
Offset: 1

Views

Author

David Radcliffe, Aug 18 2025

Keywords

Comments

This is one of four infinite families of triangular numbers consisting of two different digits. The other three families are A319170, A037156 (n>1), and A309597 (n>2).

Crossrefs

Programs

  • Mathematica
    A383942[n_] := (8*10^(2*n) - 10^(n+1) + 2)/9; Array[A383942, 15] (* or *)
    LinearRecurrence[{111, -1110, 1000}, {78, 8778, 887778}, 15] (* Paolo Xausa, Aug 27 2025 *)
  • Python
    def A383942(n): return (8*10**(2*n)-10**(n+1)+2)//9

Formula

a(n) = A000217(A073551(n+1)).
G.f.: 6*x*(13 + 20*x)/((1 - x)*(1 - 10*x)*(1 - 100*x)). - Stefano Spezia, Aug 19 2025
Showing 1-4 of 4 results.