login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A130879
An antidiagonal triangular sequence based on sums of fractal self-similar level count totals of the sort: Sum_{n=0..m} k^(2^n).
0
2, 3, 6, 4, 12, 22, 5, 20, 93, 278, 6, 30, 276, 6654, 65814, 7, 42, 655, 65812, 43053375, 4295033110, 8, 56, 1338, 391280, 4295033108, 1853020231905216, 18446744078004584726, 9, 72, 2457, 1680954, 152588281905
OFFSET
1,1
COMMENTS
I used the "Reverse" in this antidiagonal transform so that the first column is the low numbers of the fractal states themselves.
The row sum is given by:
Table[Apply[Plus, Table[a[[n, l - n]], {n, 1, l - 1}]], {l, 1, Dimensions[a][[1]] + 1}]
0, 2, 9, 38, 396, 72780, 4338153001, 18448597102531915732, ...
This sort of statistics is basic to things like Zipf word frequency and other fractal dimension determinations.
FORMULA
a(m,k) = Sum_{n=0..m} k^(2^n); T(n,m) = antidiagonal_transform(a(m,k)) (see the Mathematica code below).
EXAMPLE
{2},
{3, 6},
{4, 12, 22},
{5, 20, 93, 278},
{6, 30, 276, 6654, 65814},
{7, 42, 655, 65812, 43053375, 4295033110},
{8, 56, 1338, 391280, 4295033108, 1853020231905216, 18446744078004584726}
MATHEMATICA
f[m_, k_] := Sum[k^(2^n), {n, 0, m}]; a = Table[f[m, k], {k, 2, 12}, {m, 0, 10}]; c = Table[Reverse[Table[a[[n, l - n]], {n, 1, l - 1}]], {l, 1, Dimensions[a][[1]] + 1}]; Flatten[c]
CROSSREFS
Sequence in context: A328443 A122866 A097275 * A119741 A268216 A346928
KEYWORD
nonn,tabl
AUTHOR
Roger L. Bagula, Aug 21 2007
STATUS
approved