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.

A278075 Coefficients of the signed Fubini polynomials in ascending order, F_n(x) = Sum_{k=0..n} (-1)^n*Stirling2(n,k)*k!*(-x)^k.

This page as a plain text file.
%I A278075 #26 Aug 11 2025 06:55:53
%S A278075 1,0,1,0,-1,2,0,1,-6,6,0,-1,14,-36,24,0,1,-30,150,-240,120,0,-1,62,
%T A278075 -540,1560,-1800,720,0,1,-126,1806,-8400,16800,-15120,5040,0,-1,254,
%U A278075 -5796,40824,-126000,191520,-141120,40320,0,1,-510,18150,-186480,834120,-1905120,2328480,-1451520,362880
%N A278075 Coefficients of the signed Fubini polynomials in ascending order, F_n(x) = Sum_{k=0..n} (-1)^n*Stirling2(n,k)*k!*(-x)^k.
%C A278075 Signed version of A131689.
%C A278075 Integral_{x=0..1} F_n(x) = B_n(1) where B_n(x) are the Bernoulli polynomials.
%H A278075 Peter Luschny, <a href="/A164555/a164555.jpg">Illustration of the polynomials.</a>
%H A278075 Peter Luschny, <a href="http://luschny.de/math/zeta/The-Bernoulli-Manifesto.html">The Bernoulli Manifesto.</a>
%H A278075 Grzegorz Rządkowski, <a href="https://doi.org/10.1142/S1402925110000635">Bernoulli numbers and solitons - revisited</a>, Journal of Nonlinear Mathematical Physics, (2010) 17:1, 121-126.
%H A278075 J. Worpitzky, <a href="https://gdz.sub.uni-goettingen.de/id/PPN243919689_0094">Studien über die Bernoullischen und Eulerschen Zahlen</a>, Journal für die reine und angewandte Mathematik, 94 (1883), 203-232.
%F A278075 T(n, k) = (-1)^(n-k) * Stirling2(n, k) * k!.
%F A278075 E.g.f.: 1/(1-x*(1-exp(-t))) = Sum_{n>=0} F_n(x) t^n/n!.
%F A278075 T(n, k) = k*(T(n-1, k-1) - T(n-1, k)) for 0 <= k <= n, T(0, 0) = 1, otherwise 0.
%F A278075 Bernoulli numbers are given by B(n) = Sum_{k = 0..n} T(n, k) / (k+1) with B(1) = 1/2. - _Michael Somos_, Jul 08 2018
%F A278075 Let F_n(x) be the row polynomials of this sequence and W_n(x) the row polynomials of A163626. Then F_n(1 - x) = W_n(x) and Integral_{x=0..1} U(n, x) = Bernoulli(n, 1) for U in {W, F}. - _Peter Luschny_, Aug 10 2021
%F A278075 T(n, k) = [z^k] Sum_{k=0..n} Eulerian(n, k)*z^(k+1)*(z-1)^(n-k-1) for n >= 1, where Eulerian(n, k) = A173018(n, k). - _Peter Luschny_, Aug 15 2022
%e A278075 Triangle of coefficients starts:
%e A278075 [1]
%e A278075 [0,  1]
%e A278075 [0, -1,    2]
%e A278075 [0,  1,   -6,    6]
%e A278075 [0, -1,   14,  -36,    24]
%e A278075 [0,  1,  -30,  150,  -240,   120]
%e A278075 [0, -1,   62, -540,  1560, -1800,    720]
%e A278075 [0,  1, -126, 1806, -8400, 16800, -15120, 5040]
%p A278075 F := (n,x) -> add((-1)^n*Stirling2(n,k)*k!*(-x)^k, k=0..n):
%p A278075 for n from 0 to 10 do PolynomialTools:-CoefficientList(F(n,x), x) od;
%t A278075 T[ n_, k_] := If[ n < 0 || k < 0, 0, (-1)^(n - k) k! StirlingS2[n, k]]; (* _Michael Somos_, Jul 08 2018 *)
%o A278075 (PARI)
%o A278075 {T(n, k) = if( n<0, 0, sum(i=0, k, (-1)^(n + i) * binomial(k, i) * i^n))};
%o A278075 /* _Michael Somos_, Jul 08 2018 */
%o A278075 (Julia)
%o A278075 function T(n, k)
%o A278075     if k < 0 || k > n return 0 end
%o A278075     if n == 0 && k == 0 return 1 end
%o A278075     k*(T(n-1, k-1) - T(n-1, k))
%o A278075 end
%o A278075 for n in 0:7
%o A278075     println([T(n,k) for k in 0:n])
%o A278075 end
%o A278075 # _Peter Luschny_, Mar 26 2020
%Y A278075 Row sums are A000012, diagonal is A000142.
%Y A278075 Cf. A131689 (unsigned), A019538 (n>0, k>0), A090582.
%Y A278075 Let F(n, x) = Sum_{k=0..n} T(n,k)*x^k then, apart from possible differences in the sign or the offset, we have: F(n, -5) = A094418(n), F(n, -4) = A094417(n), F(n, -3) = A032033(n), F(n, -2) = A004123(n), F(n, -1) = A000670(n), F(n, 0) = A000007(n), F(n, 1) = A000012(n), F(n, 2) = A000629(n), F(n, 3) = A201339(n), F(n, 4) = A201354(n), F(n, 5) = A201365(n).
%Y A278075 Cf. A163626, A173018.
%K A278075 sign
%O A278075 0,6
%A A278075 _Peter Luschny_, Jan 09 2017