A110147 10^((n^2-n)/2).
1, 1, 10, 1000, 1000000, 10000000000, 1000000000000000, 1000000000000000000000, 10000000000000000000000000000, 1000000000000000000000000000000000000
Offset: 0
Programs
-
PARI
a(n)=10^binomial(n,2) \\ Charles R Greathouse IV, Jan 17 2012
Formula
a(n+1) is the determinant of n X n matrix M_(i, j) = binomial(10i, j).
a(n)=10a(n-1)^2/a(n-2), a(0)=a(1)=1. - Michael Somos, Sep 12 2005
Comments