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!)
A156353 A symmetrical powers triangle sequence: t(n,m) = (m^(n - m) + (n - m)^m). 3
2, 3, 3, 4, 8, 4, 5, 17, 17, 5, 6, 32, 54, 32, 6, 7, 57, 145, 145, 57, 7, 8, 100, 368, 512, 368, 100, 8, 9, 177, 945, 1649, 1649, 945, 177, 9, 10, 320, 2530, 5392, 6250, 5392, 2530, 320, 10, 11, 593, 7073, 18785, 23401, 23401, 18785, 7073, 593, 11, 12, 1124, 20412 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
Equivalently, table by antidiagonals of n^m + m^n for n,m > 0.
Row sums are:
{2, 6, 16, 44, 130, 418, 1464, 5560, 22754, 99726, 465536,...}.
LINKS
FORMULA
t(n,m) = (m^(n - m) + (n - m)^m).
a(n) = A004736(n)^A002260(n) + A002260(n)^A004736(n) or
((t*t+3*t+4)/2-n)^(n-(t*(t+1)/2))+ (n-(t*(t+1)/2))^((t*t+3*t+4)/2-n), where t=floor((-1+sqrt(8*n-7))/2). - Boris Putievskiy, Dec 14 2012
EXAMPLE
{2},
{3, 3},
{4, 8, 4},
{5, 17, 17, 5},
{6, 32, 54, 32, 6},
{7, 57, 145, 145, 57, 7},
{8, 100, 368, 512, 368, 100, 8},
{9, 177, 945, 1649, 1649, 945, 177, 9},
{10, 320, 2530, 5392, 6250, 5392, 2530, 320, 10},
{11, 593, 7073, 18785, 23401, 23401, 18785, 7073, 593, 11},
{12, 1124, 20412, 69632, 94932, 93312, 94932, 69632, 20412, 1124, 12}
MATHEMATICA
Clear[t, n, m];
t[n_, m_] = (m^(n - m) + (n - m)^m);
Table[Table[t[n, m], {m, 1, n - 1}], {n, 2, 12}];
Flatten[%]
PROG
(Python)
t=int((math.sqrt(8*n-7) - 1)/ 2)
m=((t*t+3*t+4)/2-n)**(n-t*(t+1)/2)+(n-t*(t+1)/2)**((t*t+3*t+4)/2-n)
# Boris Putievskiy, Dec 14 2012
CROSSREFS
Cf. A005652 is the same table with row 0 and column 0 included.
Sequence in context: A203990 A238812 A227269 * A239849 A202560 A227165
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Feb 08 2009
EXTENSIONS
Edited by Franklin T. Adams-Watters, Oct 26 2009
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 23 22:36 EDT 2024. Contains 371917 sequences. (Running on oeis4.)