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.

A357121 Irregular triangle T(n, k), n > 0, k = 1..A352104(n); the n-th row contains, in ascending order, the terms in the lazy tribonacci representation of n.

Original entry on oeis.org

1, 2, 1, 2, 4, 1, 4, 2, 4, 1, 2, 4, 1, 7, 2, 7, 1, 2, 7, 4, 7, 1, 4, 7, 2, 4, 7, 1, 2, 4, 7, 2, 13, 1, 2, 13, 4, 13, 1, 4, 13, 2, 4, 13, 1, 2, 4, 13, 1, 7, 13, 2, 7, 13, 1, 2, 7, 13, 4, 7, 13, 1, 4, 7, 13, 2, 4, 7, 13, 1, 2, 4, 7, 13, 4, 24, 1, 4, 24, 2, 4, 24
Offset: 1

Views

Author

Rémy Sigrist, Sep 12 2022

Keywords

Comments

See A357120 for the sequence corresponding to greedy tribonacci representations.

Examples

			Triangle T(n, k) begins:
     1: [1]
     2: [2]
     3: [1, 2]
     4: [4]
     5: [1, 4]
     6: [2, 4]
     7: [1, 2, 4]
     8: [1, 7]
     9: [2, 7]
    10: [1, 2, 7]
    11: [4, 7]
    12: [1, 4, 7]
    13: [2, 4, 7]
    14: [1, 2, 4, 7]
    15: [2, 13]
		

Crossrefs

Programs

  • PARI
    See Links section.

Formula

T(n, 1) = 2^A080843(n-1).