login
A394646
Triangle read by rows: row n gives y transposed, where y is the solution to the matrix equation M*y=b, where the matrix M and vector b are defined by M(i,j) = ((10^(i+1) + 1)^(j-1) + 9)/10 and b(i) = ((10^(i+1)+1)^n + 9)/10 for 1 <= i,j <= n.
1
11, -11101, 1102, 111111101, -11122203, 11103, -11112121211101, 1113242533304, -1121433306, 111104, 11112222323222211101, -1113344758667744405, 1122547669966610, -112225544410, 1111105, -111122324344444434232211101, 11133549812244525939955506, -11226591166972437711015, 1123378103995511020, -11223276655515, 11111106
OFFSET
1,1
COMMENTS
This sequence is similar to A292625 and A365450. See the MathOverflow link.
LINKS
EXAMPLE
Triangle begins:
11;
-11101, 1102;
111111101, -11122203, 11103;
-11112121211101, 1113242533304, -1121433306, 111104;
11112222323222211101, -1113344758667744405, 1122547669966610, -112225544410, 1111105;
...
PROG
(PARI) M(n) = matrix(n, n, i, j, ((10^(i+1) + 1)^(j-1) + 9)/10);
b(n) = vector(n, i, ((10^(i+1)+1)^n + 9)/10);
row(n) = matsolve(M(n), b(n)~)~;
CROSSREFS
Sequence in context: A068224 A066945 A267359 * A267940 A384015 A113615
KEYWORD
sign,tabl
AUTHOR
Ahmad J. Masad, Apr 28 2026
STATUS
approved