Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
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!)
A186232 Row sums of A185249. 2
1, 1, 2, 3, 7, 18, 58, 221, 1055, 6485, 50536, 478836, 5440177, 76190368, 1363369202, 31071197441, 868697997215, 29108097152159, 1188937117381254, 61492149340335133, 4073478163425582443, 335184988593624746984, 33170032360612393972748 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
From Vaclav Kotesovec, Aug 27 2023: (Start)
a(n)^(1/n^2) tends to 1.1130228... (based on the first 750 terms).
Conjecture: the constant is the same as in A343032. (End)
LINKS
MAPLE
with(LinearAlgebra):
ctln:= proc(n) option remember; binomial(2*n, n)/(n+1) end:
T := proc(n, k)
if n=k then 1
elif irem(n+k, 2)=1 then 0
else Determinant(Matrix((n-k)/2, (i, j)-> ctln(i+j-1+k)))
fi
end:
a:= n-> add(T(n, k), k=0..n):
seq(a(n), n=0..25); # Alois P. Heinz, Feb 15 2011
MATHEMATICA
t[n_, n_] = 1; t[n_, k_] /; Mod[n+k, 2] == 1 = 0; t[n_, k_] := Array[CatalanNumber[#1 + #2 - 1 + k]&, {(n-k)/2, (n-k)/2}] // Det; a[n_] := Sum[t[n, k], {k, 0, n}]; Table[a[n], {n, 0, 22} ] (* Jean-François Alcover, Mar 19 2014, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A005248 A032102 A100388 * A160181 A096203 A328430
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 15 2011
EXTENSIONS
Corrected and extended by Alois P. Heinz, Feb 15 2011
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 July 18 17:25 EDT 2024. Contains 374388 sequences. (Running on oeis4.)