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!)
A082160 Deterministic completely defined acyclic automata with 3 inputs and n+1 transient labeled states including a unique state having all transitions to the absorbing state. 6
1, 7, 315, 45682, 15646589, 10567689552, 12503979423607, 23841011541867520, 68835375121428936153, 286850872894190847235840, 1660638682341609286358474579, 12947089879912710544534553836032 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
This is the first column of the array A082172.
LINKS
Valery A. Liskovets, Exact enumeration of acyclic automata, Proc. 15th Conf. "Formal Power Series and Algebr. Combin. (FPSAC'03)", 2003.
Valery A. Liskovets, Exact enumeration of acyclic deterministic automata, Discrete Appl. Math., 154, No.3 (2006), 537-551.
FORMULA
a(n) = b_3(n) where b_3(0) = 1, b_3(n) = Sum_{i=0..n-1} binomial(n, i)*(-1)^(n-i-1)*((i+2)^3 - 1)^(n-i)*b_3(i), n > 0.
MATHEMATICA
a[0] = 1; a[n_] := a[n] = Sum[Binomial[n, i] (-1)^(n - i - 1) ((i + 2)^3 - 1)^(n - i) a[i], {i, 0, n - 1}];
Table[a[n], {n, 0, 11}] (* Jean-François Alcover, Aug 29 2019 *)
PROG
(Magma)
function a(n) // a = A082160
if n eq 0 then return 1;
else return (&+[Binomial(n, j)*(-1)^(n-j-1)*((j+2)^3 - 1)^(n-j)*a(j): j in [0..n-1]]);
end if;
end function;
[a(n): n in [0..20]]; // G. C. Greubel, Jan 17 2024
(SageMath)
@CachedFunction
def a(n): # A082160
if n==0: return 1
else: return sum(binomial(n, j)*(-1)^(n-j-1)*((j+2)^3 -1)^(n-j)*a(j) for j in range(n))
[a(n) for n in range(21)] # G. C. Greubel, Jan 17 2024
CROSSREFS
Sequence in context: A171148 A219267 A244851 * A220278 A163437 A109059
KEYWORD
easy,nonn
AUTHOR
Valery A. Liskovets, Apr 09 2003
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 April 19 16:38 EDT 2024. Contains 371794 sequences. (Running on oeis4.)