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!)
A368369 AGM transform of odd numbers. 1
0, 4, 324, 38656, 6812500, 1691793216, 566933589544, 247467140448256, 136744348012840296, 93452709250000000000, 77479910616937022101996, 76677271817228569527975936, 89338843947334074736463717884, 121104748419604219251183463776256, 189040371972603446582336425781250000, 336742459165125951045187297509382291456 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
See A368366 for further information.
LINKS
MATHEMATICA
A368369[n_] := With[{m = n^n}, m*(m-(2*n-1)!!)];
Array[A368369, 20] (* Paolo Xausa, Jan 29 2024 *)
PROG
(PARI) a368369(n) = {my(v=vector(n, i, i+i-1)); vecsum(v)^n - n^n*vecprod(v)}; \\ Hugo Pfoertner, Jan 24 2024
(Python)
from sympy import factorial2
def A368369(n): return (m:=n**n)*(m-factorial2((n<<1)-1)) # Chai Wah Wu, Jan 25 2024
CROSSREFS
Sequence in context: A186163 A159492 A368619 * A053917 A005832 A195501
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 May 4 13:55 EDT 2024. Contains 372243 sequences. (Running on oeis4.)