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 A280442 #22 Mar 01 2020 04:25:15 %S A280442 1,1,11,173,22931,1319183,233526463,29412432709,39959591850371, %T A280442 8797116290975003,4872532317019728133,1657631603843299234219, %U A280442 2718086236621937756966743,1321397724505770800453750299,1503342018433974345747514544039 %N A280442 Numerators of coefficients in the Taylor series expansion of Sum_{n>=0} exp((-1)^n*euler(2*n)*x^n/(2*n)). %C A280442 This sequence is related in a peculiar way to A223067, a sequence related to the period T of a simple gravity pendulum for arbitrary amplitudes. See A280443 for more information. %H A280442 Sergey Khrushchev, <a href="http://assets.cambridge.org/97805218/54191/frontmatter/9780521854191_frontmatter.pdf">Orthogonal Polynomials and Continued Fractions, From Euler's point of view</a>, Corollary 4.26, p. 192, 2008. %F A280442 a(n) = numerators of coefficients in the Taylor series expansion of Sum_{n>=0} exp((-1)^n * euler(2*n)*x^n/(2*n)). %F A280442 Let S = Sum_{n>=0} (-1)^n*euler(2*n)*x^n/(2*n) and w(n) = A005187(n) then a(n) = 2^w(n) * [x^n] exp(S). - _Peter Luschny_, Jan 05 2017 %p A280442 nmax:=14: f := series(exp(add((-1)^n*euler(2*n) * x^n/(2*n), n=1..nmax+1)), x=0, nmax+1): for n from 0 to nmax do a(n) := numer(coeff(f, x, n)) od: seq(a(n), n=0..nmax); %o A280442 (Sage) %o A280442 def A280442_list(prec): %o A280442 P.<x> = PowerSeriesRing(QQ, default_prec=2*prec) %o A280442 def g(x): return exp(sum((-1)^k*euler_number(2*k)*x^k/(2*k) for k in (1..prec+1))) %o A280442 R = P(g(x)).coefficients() %o A280442 d = lambda n: 2^(2*n - sum(n.digits(2))) %o A280442 return [d(n)*R[n] for n in (0..prec)] %o A280442 print(A280442_list(14)) # _Peter Luschny_, Jan 05 2017 %Y A280442 Cf. A046161 (denominators). %Y A280442 Cf. A000364 (Euler numbers), A223067, A255881, A280443. %K A280442 nonn,frac,easy %O A280442 0,3 %A A280442 _Johannes W. Meijer_ and _Joseph Abate_, Jan 03 2017