login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A103287 Main diagonal of triangle A103286, in which row n+1 is formed by sorting, in ascending order, the result of the convolution of row n with {2,1}. 1
1, 2, 5, 12, 30, 77, 202, 540, 1464, 4014, 11101, 30910, 86542, 243416, 687364, 1947736, 5536216, 15779646, 45088304, 129124925, 370550378, 1065368994, 3068348448, 8851297414, 25571726480, 73981434516, 214317561452 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
a(n) ~ 3^n*log_3(n)/(18n) (conjecture).
PROG
(PARI) {a(n)=local(A=vector(n+1, i, vector(i)), B); A[1][1]=1; for(k=1, n, B=vector(k+1); B[1]=2*A[k][1]; B[k+1]=A[k][k]; for(i=2, k, B[i]=2*A[k][i]+A[k][i-1]); A[k+1]=vecsort(B)); return(A[n+1][n+1])}
CROSSREFS
Sequence in context: A024851 A188378 A145267 * A136704 A120895 A101785
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 28 2005
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 19 17:49 EDT 2024. Contains 371797 sequences. (Running on oeis4.)