proposed
approved
proposed
approved
editing
proposed
(PARI) \\ after R. J. Mathar
T(n, k)=if(n==k, 1, if(n==2*k, -(k+1))); \\ from A155102
\\ First term = 1 omitted
a155103(upto) = my(m=3*2^upto, a=matid(m)); for(r=1, m, forstep(c=r-1, 1, -1, a[r, c]=-sum(cp=c, r-1, a[cp, c]*T(r, cp)); if(c==3 && a[r, c]!=0, print1(a[r, c], ", "))));
a155103(8) \\ Hugo Pfoertner, Oct 03 2024
proposed
editing
editing
proposed
1, 4, 28, 364, 9100, 445900, 43252300, 8347693900, 3213862151500, 2471459994503500, 3798634011551879500, 11673202317498925703500
More terms added with the recurrence relation. - Tristan Cam, Oct 02 2024
(Python)
def seq(k):
s = [1]
for i in range(k-1):
s.append(s[-1]*(1+3*(1<<i)))
return s
# Tristan Cam, Oct 02 2024
a(8)-a(1112) from Hugo Pfoertner, Oct 02 2024
proposed
editing
editing
proposed
1, 4, 28, 364, 9100, 445900, 43252300, 8347693900, 3213862151500, 2471459994503500, 3798634011551879500, 11673202317498925703500, 71731828241030898448007500, 881512437254028711027564167500, 21664931170392263630924444544647500
a(8)-a(11) from Hugo Pfoertner, Oct 02 2024
proposed
editing
editing
proposed
_# _Tristan Cam_, Oct 02 2024
proposed
editing
editing
proposed