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!)
A319949 a(n) = Product_{i=1..n} floor(4*i/3). 3
1, 2, 8, 40, 240, 1920, 17280, 172800, 2073600, 26956800, 377395200, 6038323200, 102651494400, 1847726899200, 36954537984000, 776045297664000, 17072996548608000, 409751917166592000, 10243797929164800000, 266338746158284800000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
FORMULA
a(n) ~ (4/3)^n * n! * 2*sqrt(Pi) / (3^(1/4) * Gamma(1/4) * n^(1/4)).
Recurrence: 27*(3*n - 7)*a(n) = 54*(2*n - 5)*a(n-1) + 12*(12*n^2 - 42*n + 35)*a(n-2) + 8*(n-2)*(2*n - 5)*(3*n - 4)*(4*n - 9)*a(n-3).
MATHEMATICA
Table[Product[Floor[i*4/3], {i, 1, n}], {n, 1, 20}]
RecurrenceTable[{27*(3*n - 7)*a[n] == 54*(2*n - 5)*a[n-1] + 12*(12*n^2 - 42*n + 35)*a[n-2] + 8*(n-2)*(2*n - 5)*(3*n - 4)*(4*n - 9)*a[n-3], a[1]==1, a[2]==2, a[3]==8}, a, {n, 1, 20}]
FoldList[Times, Floor[4 Range[20]/3]] (* Harvey P. Dale, Mar 21 2024 *)
PROG
(PARI) a(n) = prod(i=1, n, (4*i)\3); \\ Michel Marcus, Oct 03 2018
CROSSREFS
Sequence in context: A347666 A055882 A002301 * A304070 A349105 A259869
KEYWORD
nonn
AUTHOR
Vaclav Kotesovec, Oct 02 2018
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)