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!)
A368370 AGM transform of triangular numbers. 1
0, 4, 514, 113920, 44084375, 28195584256, 28201577788944, 42039291307622400, 89651019067859485125, 264184676314240000000000, 1044528435971290465713291136, 5403748103160416506028643844096, 35801791315095649217787108688094375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A368366 for further information.
LINKS
FORMULA
a(n) ~ (n*(n+1)*(n+2)/6)^n - n^n*n!*(n+1)!/2^n. - Vaclav Kotesovec, Jan 24 2024
MATHEMATICA
Table[Sum[k*(k+1)/2, {k, 1, n}]^n - n^n*Product[k*(k+1)/2, {k, 1, n}], {n, 1, 12}] (* Vaclav Kotesovec, Jan 24 2024 *)
PROG
(Python)
from math import comb, factorial
def A368370(n): return comb(n+2, 3)**n-(n**n*factorial(n)**2*(n+1)>>n) # Chai Wah Wu, Jan 25 2024
CROSSREFS
Sequence in context: A278878 A348703 A291830 * A003393 A089668 A257922
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Jan 24 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 August 28 23:11 EDT 2024. Contains 375508 sequences. (Running on oeis4.)