cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A102102 Column 0 of triangular matrix A102101, which shifts upward to exclude the main diagonal under matrix fourth power.

This page as a plain text file.
%I A102102 #8 Apr 18 2024 12:50:43
%S A102102 1,1,15,1000,189035,79278446,63263422646,86493299281972,
%T A102102 187766975052827491,611024291011881918991,2849262494779035461688236,
%U A102102 18362167739517547774072439880,158759599858376078627687256207242
%N A102102 Column 0 of triangular matrix A102101, which shifts upward to exclude the main diagonal under matrix fourth power.
%C A102102 Analogous to A082161 and A082162, this describes the deterministic completely defined initially connected acyclic automata with 4 inputs and n transient unlabeled states (and a unique absorbing state) with a(0)=1.
%H A102102 Manosij Ghosh Dastidar and Michael Wallner, <a href="https://arxiv.org/abs/2404.08415">Asymptotics of relaxed k-ary trees</a>, arXiv:2404.08415 [math.CO], 2024. See p. 1.4.
%o A102102 (PARI) {a(n)=local(A=matrix(1,1),B);A[1,1]=1; for(m=2,n+1,B=matrix(m,m);for(i=1,m, for(j=1,i, if(j==i,B[i,j]=j,if(j==1,B[i,j]=(A^4)[i-1,1], B[i,j]=(A^4)[i-1,j]));));A=B);return(A[n+1,1])}
%Y A102102 Cf. A102101, A082161, A082162.
%K A102102 nonn
%O A102102 0,3
%A A102102 _Paul D. Hanna_, Dec 29 2004