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!)
A354334 a(n) is the numerator of Sum_{k=0..n} 1 / (2*k)!. 5
1, 3, 37, 1111, 6913, 799933, 739138093, 44841044309, 32285551902481, 9879378882159187, 1251387991740163687, 1734423756551866870183, 136771701945232930334431, 23048564587067030852654113, 42769754577382930342215977687, 409306551305554643375006906464591 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
LINKS
FORMULA
Numerators of coefficients in expansion of cosh(sqrt(x)) / (1 - x).
EXAMPLE
1, 3/2, 37/24, 1111/720, 6913/4480, 799933/518400, 739138093/479001600, ...
MATHEMATICA
Table[Sum[1/(2 k)!, {k, 0, n}], {n, 0, 15}] // Numerator
nmax = 15; CoefficientList[Series[Cosh[Sqrt[x]]/(1 - x), {x, 0, nmax}], x] // Numerator
Accumulate[1/(2*Range[0, 20])!]//Numerator (* Harvey P. Dale, Sep 05 2024 *)
PROG
(PARI) a(n) = numerator(sum(k=0, n, 1/(2*k)!)); \\ Michel Marcus, May 24 2022
(Python)
from fractions import Fraction
from math import factorial
def A354334(n): return sum(Fraction(1, factorial(2*k)) for k in range(n+1)).numerator # Chai Wah Wu, May 24 2022
CROSSREFS
Sequence in context: A003716 A331345 A357398 * A051396 A113074 A128083
KEYWORD
nonn,frac,changed
AUTHOR
Ilya Gutkovskiy, May 24 2022
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 September 14 12:31 EDT 2024. Contains 375921 sequences. (Running on oeis4.)