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-1 of 1 results.

A275331 Triangle read by rows, T(n,k) = k*Sum_{m=1..n/k} t(k)*t(n-k*m+1) with t = A000081, for n>=1 and 1<=k<=n.

Original entry on oeis.org

1, 2, 2, 4, 2, 6, 8, 6, 6, 16, 17, 10, 12, 16, 45, 37, 24, 30, 32, 45, 120, 85, 50, 60, 64, 90, 120, 336, 200, 120, 132, 160, 180, 240, 336, 920, 486, 280, 318, 336, 405, 480, 672, 920, 2574, 1205, 692, 750, 800, 945, 1080, 1344, 1840, 2574, 7190
Offset: 1

Views

Author

Peter Luschny, Aug 18 2016

Keywords

Examples

			Triangle starts:
[n] [k=1,2,...] row sum
[1] [1] 1
[2] [2, 2] 4
[3] [4, 2, 6] 12
[4] [8, 6, 6, 16] 36
[5] [17, 10, 12, 16, 45] 100
[6] [37, 24, 30, 32, 45, 120] 288
[7] [85, 50, 60, 64, 90, 120, 336] 805
[8] [200, 120, 132, 160, 180, 240, 336, 920] 2288
[9] [486, 280, 318, 336, 405, 480, 672, 920, 2574] 6471
		

Crossrefs

T(n,0) = A087803(n).
T(n,n) = A055544(n).
Sum_k T(n,k) = A095350(n+1).

Programs

  • Sage
    @cached_function
    def t():
        n = 1
        b = [0,1]
        while True:
            S = [k*sum(b[k]*b[n-k*m+1] for m in (1..n//k)) for k in (1..n)]
            b.append(sum(S)//n)
            yield S
            n += 1
    t_list = t()
    for n in (1..8): print(next(t_list))
Showing 1-1 of 1 results.