login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A141600 A neo-combination triangle of coefficients based on the renormalization of permutations by the SU(n) or A_n-1 group element numbers: a(n)=n^2-1; f(n)=n*f(n-1)*a(n)/a(n-1); t(n,m)=Round( f(n)/(f(n-m)*f(m))). 0
1, 1, 1, 1, 6, 1, 1, 8, 8, 1, 1, 8, 10, 8, 1, 1, 8, 10, 10, 8, 1, 1, 9, 12, 11, 12, 9, 1, 1, 10, 14, 14, 14, 14, 10, 1, 1, 10, 17, 18, 20, 18, 17, 10, 1, 1, 11, 20, 24, 28, 28, 24, 20, 11, 1, 1, 12, 24, 31, 40, 43, 40, 31, 24, 12, 1 (list; table; graph; refs; listen; history; internal format)
OFFSET

1,5

COMMENTS

Row sums are {1, 2, 8, 18, 28, 38, 55, 78, 112, 168, 259, ...}.

The constant that is Exp[1]-like associated with the permutations is:

N[Sum[1/f[n], {n, 0, 255}]]=2.190669247268157.

FORMULA

a(n)=n^2-1; f(n)=n*f(n-1)*a(n)/a(n-1); t(n,m)=Round( f(n)/(f(n-m)*f(m))).

EXAMPLE

{1},

{1, 1},

{1, 6, 1},

{1, 8, 8, 1},

{1, 8, 10, 8, 1},

{1, 8, 10, 10, 8, 1},

{1, 9, 12, 11, 12, 9, 1},

{1, 10, 14, 14, 14, 14, 10, 1},

{1, 10, 17, 18, 20, 18, 17, 10, 1},

{1, 11, 20, 24, 28, 28, 24, 20, 11, 1},

{1, 12, 24, 31, 40, 43, 40, 31, 24, 12, 1}

MATHEMATICA

Clear[a, f, t, n, m]; a[0] = 1; a[1] = 1; a[n_] := a[n] = n^2 - 1; Table[a[n], {n, 0, 20}]; f[0] = 1; f[1] = 1; f[n_] := f[n] = n*f[n - 1]*a[n]/a[n - 1]; Table[f[n], {n, 0, 20}]; t[n_, m_] := t[n, m] = f[n]/(f[n - m]*f[m]); Table[Table[Round[t[n, m]], {m, 0, n}], {n, 0, 10}]; Flatten[%]

CROSSREFS

Sequence in context: A171147 A171695 A179233 * A195408 A011491 A189089

Adjacent sequences:  A141597 A141598 A141599 * A141601 A141602 A141603

KEYWORD

nonn,uned,tabl

AUTHOR

Roger L. Bagula and Gary W. Adamson (rlbagulatftn(AT)yahoo.com), Aug 21 2008

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 17 00:09 EST 2012. Contains 205978 sequences.