A113723 The number of terms in row n of A113722 when interpreted as a triangle.
1, 1, 3, 15, 135, 3845, 769605, 3821696361
Offset: 1
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.
Start with 2 in row 1 and form a triangle where row n is generated from row n-1 by the rule given in the description. Then row 2 will have (2) 4's, row 3 will have (4) 6's and (4) 8's, etc. The triangle begins: 2; 4,4; 6,6,6,6,8,8,8,8; ... The number of terms in each row (also row sums with offset) is given by A113725: [1,2,8,56,984,87848,115679160,...].
a=[2,4,4];for(n=2,20, for(i=1,a[n],a=concat(a,2*n+2)));a
Comments