The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A105620 Matrix inverse square-root of triangle A105615. 5
1, -1, 1, -2, -2, 1, -10, -4, -3, 1, -74, -20, -7, -4, 1, -706, -148, -39, -11, -5, 1, -8162, -1412, -315, -70, -16, -6, 1, -110410, -16324, -3243, -635, -116, -22, -7, 1, -1708394, -220820, -40167, -7264, -1183, -180, -29, -8, 1, -29752066, -3416788, -579159, -99191, -15065, -2049, -265, -37, -9, 1 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,4
COMMENTS
Column 0 is negative A000698 (related to double factorials). Column 1 equals twice column 0 after the initial term.
LINKS
EXAMPLE
Triangle begins:
1;
-1,1;
-2,-2,1;
-10,-4,-3,1;
-74,-20,-7,-4,1;
-706,-148,-39,-11,-5,1;
-8162,-1412,-315,-70,-16,-6,1;
-110410,-16324,-3243,-635,-116,-22,-7,1;
-1708394,-220820,-40167,-7264,-1183,-180,-29,-8,1;
-29752066,-3416788,-579159,-99191,-15065,-2049,-265,-37,-9,1; ...
PROG
(PARI) T(n, k)=local(R, M=matrix(n+1, n+1, m, j, if(m>=j, if(m==j, 1, if(m==j+1, -2*j, polcoeff(1/sum(i=0, m-j, (2*i)!/i!/2^i*x^i)+O(x^m), m-j)))))); R=(M+M^0)/2; for(i=1, floor(2*log(n+2)), R=(R+M*R^(-1))/2); return(if(n<k || k<0, 0, R[n+1, k+1]))
CROSSREFS
Cf. A105615, A105619 (matrix square), A105623 (matrix inverse), A000698 (column 0), A105621 (column 2), A105622 (row sums).
Sequence in context: A285068 A306149 A134896 * A182002 A184251 A262348
KEYWORD
sign,tabl
AUTHOR
Paul D. Hanna, Apr 16 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 June 11 07:06 EDT 2024. Contains 373290 sequences. (Running on oeis4.)