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.

A345077 a(0) = 1; a(n) = 6 * Sum_{k=1..n} binomial(n,k) * a(k-1).

This page as a plain text file.
%I A345077 #5 Jun 07 2021 14:55:37
%S A345077 1,6,48,414,3876,38946,416808,4722774,56379756,706236426,9250945008,
%T A345077 126342991614,1794459834036,26445918969906,403610795535288,
%U A345077 6367606516836774,103683034842399996,1739933892930544986,30052751213767045248,533635421576480845134,9730601644306627161156
%N A345077 a(0) = 1; a(n) = 6 * Sum_{k=1..n} binomial(n,k) * a(k-1).
%F A345077 G.f. A(x) satisfies: A(x) = 1 + 6 * x * A(x/(1 - x)) / (1 - x)^2.
%t A345077 a[0] = 1; a[n_] := a[n] = 6 Sum[Binomial[n, k] a[k - 1], {k, 1, n}]; Table[a[n], {n, 0, 20}]
%t A345077 nmax = 20; A[_] = 0; Do[A[x_] = 1 + 6 x A[x/(1 - x)]/(1 - x)^2 + O[x]^(nmax + 1) // Normal, nmax + 1]; CoefficientList[A[x], x]
%Y A345077 Cf. A040027, A094419, A144223, A343523, A343975, A344735, A344840, A345078, A345081.
%K A345077 nonn
%O A345077 0,2
%A A345077 _Ilya Gutkovskiy_, Jun 07 2021