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!)
A006845 State assignments for n-state machine.
(Formerly M2295)
2

%I M2295 #24 Apr 03 2020 07:52:47

%S 0,1,3,3,140,420,840,840,10810800,75675600,454053600,2270268000,

%T 9081072000,27243216000,54486432000,54486432000,52401161274029568000,

%U 786017419110443520000,11004243867546209280000,143055170278100720640000

%N State assignments for n-state machine.

%C After the initial 0, this sequence is formed by taking in turn the last 2^(n-1) elements of row n in the irregular triangle A133709. - _Sean A. Irvine_, Aug 14 2017

%D F. J. Hill and G. R. Peterson, Introduction to Switching Theory and Logical Design. Wiley, NY, 3rd ed., 1981, p. 308.

%D N. J. A. Sloane and Simon Plouffe, The Encyclopedia of Integer Sequences, Academic Press, 1995 (includes this sequence).

%H D. Fielder, <a href="/A006845/a006845.pdf">Letters to N. J. A. Sloane (with attachment), 1991</a>

%t T[m_, l_] := T[m, l] = If[l == 1, 1, Sum[(-1)^i Binomial[l, i]* Binomial[2^(l - i) + m - 2, m], {i, 0, l - 1}] - Sum[StirlingS2[l, i]* T[m, i], {i, 1, l - 1}]];

%t Join[{{0}}, Table[Table[T[m, l], {l, 2^m - 2^(m-1), 2^m - 1}], {m, 1, 5}]] // Flatten (* _Jean-François Alcover_, Apr 03 2020 *)

%Y Cf. A007041, A133709.

%K nonn

%O 1,3

%A _N. J. A. Sloane_

%E a(9) corrected and more terms from _Sean A. Irvine_, Aug 14 2017

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 24 17:51 EDT 2024. Contains 371962 sequences. (Running on oeis4.)