login
A340451
E.g.f.: Sum_{n>=0} x^n * cosh(2^n*x) / n!.
1
1, 1, 2, 13, 98, 721, 7682, 165313, 4816898, 154732801, 7052328962, 587435092993, 67748952539138, 9011561121239041, 1692739935456460802, 557257804202631217153, 255875811615404841762818, 138681207656726645785559041, 105975684493162347867458764802
OFFSET
0,3
COMMENTS
a(n) = A047863(n) - A340452(n) for n >= 0, in which A047863 gives the number of labeled graphs with 2-colored nodes when connected only to nodes of a different color.
FORMULA
E.g.f.: Sum_{n>=0} x^n * cosh(2^n*x) / n!.
E.g.f.: Sum_{n>=0} x^(2*n) * exp(4^n*x) / (2*n)!.
EXAMPLE
E.g.f.: A(x) = 1 + x + 2*x^2/2! + 13*x^3/3! + 98*x^4/4! + 721*x^5/5! + 7682*x^6/6! + 165313*x^7/7! + 4816898*x^8/8! + 154732801*x^9/9! + ...
where
A(x) = cosh(x) + x*cosh(2*x) + x^2*cosh(2^2*x)/2! + x^3*cosh(2^3*x)/3! + x^4*cosh(2^4*x)/4! + x^5*cosh(2^5*x)/5! + ...
also
A(x) = exp(x) + x^2*exp(2^2*x)/2! + x^4*exp(2^4*x)/4! + x^6*exp(2^6*x)/6! + x^8*exp(2^8*x)/8! + ...
PROG
(PARI) {a(n) = my(A = sum(m=0, n, x^m/m! * cosh(2^m*x +x*O(x^n)) )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
(PARI) {a(n) = my(A = sum(m=0, n\2, x^(2*m)/(2*m)! * exp(2^(2*m)*x +x*O(x^n)) )); n!*polcoeff(A, n)}
for(n=0, 20, print1(a(n), ", "))
CROSSREFS
KEYWORD
nonn
AUTHOR
Paul D. Hanna, Jan 12 2021
STATUS
approved