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.

Previous Showing 11-12 of 12 results.

A361476 Antidiagonal sums of A361475.

Original entry on oeis.org

0, 1, 4, 12, 34, 99, 308, 1040, 3820, 15197, 65060, 297828, 1449742, 7468527, 40555732, 231335944, 1381989864, 8623700793, 56078446596, 379233142780, 2662013133274, 19362917621979, 145719550012276, 1133023004941248, 9090156910550084, 75161929739797493, 639793220877941476
Offset: 0

Views

Author

Stefano Spezia, Mar 13 2023

Keywords

Crossrefs

Programs

  • Maple
    f:= proc(n) local k;
    add( (k^(n-k+2) - 1)/(k - 1),k=2..n+2)
    end proc:
    map(f, [$0..30]); # Robert Israel, Nov 12 2024
  • Mathematica
    A361475[n_,k_]:=(k^n-1)/(k-1); a[n_]:=Sum[A361475[n-k+2,k],{k,2,n+2}]; Array[a,27,0]

Formula

a(n) = Sum_{k=2..n+2} (k^(n-k+2) - 1)/(k - 1).
a(n) ~ A026898(n).
a(n) = Sum_{k=0..n} k * A104878(n,k). - Alois P. Heinz, Dec 05 2023

A104880 Diagonal sums of a sum-of-powers triangle.

Original entry on oeis.org

1, 1, 2, 3, 5, 8, 14, 26, 53, 117, 280, 721, 1989, 5844, 18188, 59652, 205305, 739041, 2775190, 10846975, 44039765, 185391480, 807776210, 3637193486, 16900721837, 80939650565, 399061251260, 2023408865997, 10540656630133, 56362743769012
Offset: 0

Views

Author

Paul Barry, Mar 28 2005

Keywords

Comments

Diagonal sums of A104878.

Formula

a(0)=1, a(1)=1, a(n)=n+sum{k=2..floor(n/2), (k^(n-2k+1)-1)/(k-1)}, n>1.
Previous Showing 11-12 of 12 results.