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.

A100937 Main diagonal of symmetric square array A100936.

Original entry on oeis.org

1, 3, 14, 76, 435, 2577, 15678, 97272, 612126, 3891890, 24933292, 160663328, 1040074684, 6759228932, 44075916696, 288289595968, 1890894150707, 12434303045721, 81960791460442, 541428229233012, 3583843659376257
Offset: 0

Views

Author

Paul D. Hanna, Nov 23 2004

Keywords

Examples

			a(3) = 76 = 1*1 + 3^2*2 + 3^2*5 + 1*12 = Sum_{k=0..3} C(3,k)^2*A051163(k).
a(4) = 435 = 1*1 + 4^2*2 + 6^2*5 + 4^2*12 + 1*30 = Sum_{k=0..4} C(4,k)^2*A051163(k).
		

Crossrefs

Programs

  • PARI
    
    				

Formula

a(n) = Sum_{k=0..n} C(n, k)^2*A051162(k).