login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A331978 E.g.f.: -log(2 - cosh(x)) (even powers only). 2
0, 1, 4, 46, 1114, 46246, 2933074, 263817646, 31943268634, 5009616448246, 987840438629794, 239217148602642046, 69790939492563608554, 24143849395162438623046, 9772368696995766705116914, 4575221153658910691872135246, 2453303387149157947685779986874 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(0) = 0; a(n) = A094088(n) - (1/n) * Sum_{k=1..n-1} binomial(2*n,2*k) * A094088(n-k) * k * a(k).
a(n) ~ (2*n)! / (n * log(2 + sqrt(3))^(2*n)). - Vaclav Kotesovec, Feb 07 2020
MAPLE
ptan := proc(n) option remember;
if irem(n, 2) = 0 then 0 else
add(`if`(k=0, 1, binomial(n, k)*ptan(n - k)), k = 0..n-1, 2) fi end:
A331978 := n -> ptan(2*n - 1):
seq(A331978(n), n = 0..16); # Peter Luschny, Jun 06 2022
MATHEMATICA
nmax = 16; Table[(CoefficientList[Series[-Log[2 - Cosh[x]], {x, 0, 2 nmax}], x] Range[0, 2 nmax]!)[[n]], {n, 1, 2 nmax + 1, 2}]
CROSSREFS
Sequence in context: A356901 A001623 A188634 * A210855 A324228 A002077
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Feb 03 2020
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified March 29 04:59 EDT 2024. Contains 371264 sequences. (Running on oeis4.)