[go: up one dir, main page]

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!)
A132950 Triangle read by rows: t(n,m) = (m+1)^n*m^(n*(n-1)/2). 1
1, 1, 2, 1, 3, 18, 1, 4, 48, 1728, 1, 5, 100, 8000, 2560000, 1, 6, 180, 27000, 20250000, 75937500000, 1, 7, 294, 74088, 112021056, 1016255020032, 55316793250381824, 1, 8, 448, 175616, 481890304, 9256148959232, 1244544764462497792, 1171355575953987221848064 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
If m==0, t(n,0)=1, otherwise t(n,m) = (m+1)^n*m^(n*(n-1)/2).
EXAMPLE
{1},
{1, 2},
{1, 3, 18},
{1, 4, 48, 1728},
{1, 5, 100, 8000, 2560000},
{1, 6, 180, 27000, 20250000, 75937500000},
{1, 7, 294, 74088, 112021056, 1016255020032, 55316793250381824}
MATHEMATICA
a = Table[Table[If[m == 0, 1, (m + 1)^n*m^(n*(n - 1)/2)], {n, 0, m}], {m, 0, 10}];
Flatten[a]
PROG
(PARI) t(n, m)=if (m==0, 1, (m+1)^n*m^(n*(n-1)/2));
for (i=0, 7, for (j=0, i, print1(t(j, i), ", ")); print);
\\ Michel Marcus, Jun 03 2023
CROSSREFS
Cf. A132945.
Sequence in context: A209058 A209215 A000618 * A197190 A247482 A156364
KEYWORD
nonn,easy,tabl
AUTHOR
Roger L. Bagula, Nov 19 2007
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 29 15:03 EDT 2024. Contains 375517 sequences. (Running on oeis4.)