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!)
A003130 Impedances of an n-terminal network.
(Formerly M4873)
3

%I M4873 #18 Nov 04 2022 22:31:23

%S 1,12,157,1750,17446,164108,1505099,13720902,125782441,1167813944,

%T 11029947952,106273227216,1046320856673,10537366304920,

%U 108606982421301,1145873284492738,12375688888657414,136802023177966948,1547385154016264531

%N Impedances of an n-terminal network.

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

%H G. C. Greubel, <a href="/A003130/b003130.txt">Table of n, a(n) for n = 2..565</a>

%H J. Riordan, <a href="https://archive.org/details/bstj18-2-300">The number of impedances of an n-terminal network</a>, Bell Syst. Tech. J., 18 (1939), 300-314.

%F a(n) = A003128(n) + 2 * A003129(n) + U(n) where U(n) = Sum_{k=2..n} u(n) * Stirling2(n, k), and u(n) = (20(n)_4 + 10(n)_5 + (n)_6) / 8 where (n)_k = n * (n - 1) * ... * (n - k + 1) denotes the falling factorial. - _Sean A. Irvine_, Feb 03 2015

%t A003128[n_]:= A003128[n]= Sum[StirlingS2[n, k]*Binomial[k, 2], {k,0,n}];

%t A003129[n_]:= A003129[n]= Sum[StirlingS2[n,k]*Binomial[Binomial[k,2],2], {k,0,n}];

%t U[n_]:= Sum[15*k*Binomial[k+1,5]*StirlingS2[n,k], {k,0,n}];

%t A003130[n_]:= A003128[n] +2*A003129[n] +U[n];

%t Table[A003130[n], {n,0,40}] (* _G. C. Greubel_, Nov 04 2022 *)

%o (Magma)

%o A003128:= func< n | (&+[Binomial(k,2)*StirlingSecond(n,k): k in [0..n]]) >;

%o A003129:= func< n | (&+[Binomial(Binomial(k,2),2)*StirlingSecond(n,k): k in [0..n]]) >;

%o U:= func< n | 15*(&+[k*Binomial(k+1,5)*StirlingSecond(n,k): k in [0..n]]) >;

%o A003130:= func< n | A003128(n)+ 2*A003129(n) +U(n) >;

%o [A003130(n): n in [2..40]]; // _G. C. Greubel_, Nov 04 2022

%o (SageMath)

%o def A003128(n): return sum(binomial(k,2)*stirling_number2(n,k) for k in range(n+1))

%o def A003129(n): return sum(binomial(binomial(k,2), 2)*stirling_number2(n,k) for k in range(n+1))

%o def U(n): return 15*sum(k*binomial(k+1,5)*stirling_number2(n,k) for k in range(n+1))

%o def A003130(n): return A003128(n) +2*A003129(n) +U(n)

%o [A003130(n) for n in range(2,40)] # _G. C. Greubel_, Nov 04 2022

%Y Cf. A003128, A003129.

%K nonn

%O 2,2

%A _N. J. A. Sloane_

%E More terms from _Sean A. Irvine_, Feb 03 2015

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 23 13:11 EDT 2024. Contains 371913 sequences. (Running on oeis4.)