The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A370397 a(n) = floor(g(n + 1/4)), where g(x) is the function defined for all real numbers except the negative integers by the recurrence formula g(x+1) = g(x)*(x+1), with g(x) = 1 for 0 <= x < 1. 1
1, 1, 2, 9, 38, 203, 1274, 9241, 76242, 705241, 7228724, 81323154, 996208647, 13199764580, 188096645269, 2868473840361, 46612699905873, 804069073376312, 14674260589117694, 282479516340515613, 5720210205895441171 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
COMMENTS
Connection between the gamma function and g(n): gamma(n + 1/k)/gamma(1/k) = g(n + 1/k)/(k*n + 1) for k=1,2,3,...
LINKS
FORMULA
g(x) = Product_{k=0..floor(x - 1)} (x - k) for x >= 1.
g(x) = 1/(Product_{k=1..floor(-(x - 1))} (x + k)) for x < 0.
a(n) = floor((Product_{k=1..n} (4*k + 1))/4^n).
a(n) = floor(Product_{k=0..floor(n - 3/4)} (n - k + 1/4)).
a(n) = floor((4*n + 1)*gamma(n + 1/4)/gamma(1/4)).
EXAMPLE
a(0) = 1 because: floor(g(0 + 1/4)) = floor(g(1/4)) = floor(1) = 1.
a(1) = 1 because: floor(g(1 + 1/4)) = floor(g(5/4)) = floor(g(1/4)*(5/4)) = floor((1)*(5/4)) = 1.
a(2) = 2 because: floor(g(2 + 1/4)) = floor(g(9/4)) = floor(g(5/4)*(9/4)) = floor((5/4)*(9/4)) = 2.
a(3) = 9 because: floor(g(3 + 1/4)) = floor(g(13/4)) = floor(g(9/4)*(13/4)) = floor((5/4)*(9/4)*(13/4)) = 9.
a(4) = 38 because: floor(g(4 + 1/4)) = floor(g(17/4)) = floor(g(13/4)*(17/4)) = floor((5/4)*(9/4)*(13/4)*(17/4)) = 38.
PROG
(Maxima) makelist(floor(product(4*k+1, k, 1, n)/(4^n)), n, 0, 50);
(Python)
from math import prod
def A370397(n): return prod(range(5, (n<<2)+2, 4))>>(n<<1) # Chai Wah Wu, Apr 28 2024
CROSSREFS
Sequence in context: A151008 A057647 A249925 * A162972 A202832 A069724
KEYWORD
nonn
AUTHOR
Lechoslaw Ratajczak, Feb 17 2024
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 May 18 09:54 EDT 2024. Contains 372620 sequences. (Running on oeis4.)