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.
%I A354242 #37 Nov 16 2023 11:50:46 %S A354242 1,2,14,158,2486,50222,1239254,36126638,1214933846,46299580142, %T A354242 1971815255894,92809525295918,4784166929982806,268050260650705262, %U A354242 16219498558371118934,1054102762745609325998,73229184033780135425366,5415407651703010175897582 %N A354242 Expansion of e.g.f. 1/sqrt(5 - 4 * exp(x)). %C A354242 From _Peter Bala_, Jul 07 2022: (Start) %C A354242 Conjecture: Let k be a positive integer. The sequence obtained by reducing a(n) modulo k is eventually periodic with the period dividing phi(k) = A000010(k). For example, modulo 16 we obtain the sequence [1, 2, 14, 14, 6, 14, 6, 14, 6, ...], with an apparent period of 2 beginning at a(3). Cf. A354253. %C A354242 More generally, we conjecture that the same property holds for integer sequences having an e.g.f. of the form G(exp(x) - 1), where G(x) is an integral power series. (End) %H A354242 Seiichi Manyama, <a href="/A354242/b354242.txt">Table of n, a(n) for n = 0..360</a> %F A354242 E.g.f.: Sum_{k>=0} binomial(2*k,k) * (exp(x) - 1)^k. %F A354242 a(n) = Sum_{k=0..n} (2*k)! * Stirling2(n,k)/k!. %F A354242 a(n) ~ sqrt(2/5) * n^n / (exp(n) * log(5/4)^(n + 1/2)). - _Vaclav Kotesovec_, Jun 04 2022 %F A354242 Conjectural o.g.f. as a continued fraction of Stieltjes type: 1/(1 - 2*x/(1 - 5*x/(1 - 6*x/(1 - 10*x/(1 - 10*x/(1 - 15*x/(1 - ... - (4*n-2)*x/(1 - 5*n*x/(1 - ...))))))))). - _Peter Bala_, Jul 07 2022 %F A354242 a(0) = 1; a(n) = Sum_{k=1..n} (4 - 2*k/n) * binomial(n,k) * a(n-k). - _Seiichi Manyama_, Sep 09 2023 %F A354242 a(0) = 1; a(n) = 2*a(n-1) - 5*Sum_{k=1..n-1} (-1)^k * binomial(n-1,k) * a(n-k). - _Seiichi Manyama_, Nov 16 2023 %o A354242 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(1/sqrt(5-4*exp(x)))) %o A354242 (PARI) my(N=20, x='x+O('x^N)); Vec(serlaplace(sum(k=0, N, binomial(2*k, k)*(exp(x)-1)^k))) %o A354242 (PARI) a(n) = sum(k=0, n, (2*k)!*stirling(n, k, 2)/k!); %Y A354242 Cf. A305404, A354252, A354253. %Y A354242 Cf. A000670, A001813, A094417, A316747, A354240, A354241. %K A354242 nonn %O A354242 0,2 %A A354242 _Seiichi Manyama_, May 20 2022