The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A185737 Accumulation array of the Wythoff array, by antidiagonals. 1
1, 3, 5, 6, 14, 11, 11, 28, 30, 20, 19, 51, 60, 54, 32, 32, 88, 109, 108, 86, 46, 53, 148, 188, 196, 172, 123, 63, 87, 245, 316, 338, 312, 246, 168, 82, 142, 402, 523, 568, 538, 446, 336, 218, 104, 231, 656, 858, 940, 904, 769, 609, 436, 276, 129, 375, 1067, 1400, 1542, 1496, 1292, 1050, 790, 552, 342, 156, 608, 1732, 2277, 2516, 2454, 2138, 1764, 1362, 1000, 684, 413, 186 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
For the definition of accumulation array, see A144112.
LINKS
EXAMPLE
Northwest corner:
1 3 6 11 19 (A001911)
5 14 28 51 88
11 30 60 109 188
20 54 108 196 338
MATHEMATICA
(* This program creates the Wythoff array W={f(n, k)}=A035513, then the accumulation array A185736 of W, then the weight array A185736 of W *)
f[n_, 0]:=0; f[0, k_]:=0; (* Needed for the weight array *)
f[n_, k_]:=Fibonacci[k+1]Floor[n*GoldenRatio]+(n-1)Fibonacci[k];
TableForm[Table[f[n, k], {n, 1, 10}, {k, 1, 15}]] (* Wythoff array *)
Table[f[n-k+1, k], {n, 14}, {k, n, 1, -1}]//Flatten
s[n_, k_]:=Sum[f[i, j], {i, 1, n}, {j, 1, k}];
TableForm[Table[s[n, k], {n, 1, 10}, {k, 1, 15}]] (* A185736 *)
Table[s[n-k+1, k], {n, 14}, {k, n, 1, -1}]//Flatten
(* In general, the weight array W of an arbitrary rectangular array S={s(i, j):i<=1, j<=1} is defined in two steps:(1) define s(i, j)=0 if i=0 or j=0; (2) then w(m, n)=s(m, n)+s(m-1, n-1)-s(m, n-1)-s(m-1, n) for m<1, n<1. *)
w[m_, n_]:=f[m, n]+f[m-1, n-1]-f[m, n-1]-f[m-1, n]/; Or[m>0, n>0];
TableForm[Table[w[n, k], {n, 1, 10}, {k, 1, 15}]] (* A185736 *)
Table[w[n-k+1, k], {n, 20}, {k, n, 1, -1}]//Flatten
PROG
(PARI) W(n, k) = (n+sqrtint(5*n^2))\2*fibonacci(k+1) + (n-1)*fibonacci(k); \\ A035513
T(n, k) = sum(i=1, n, sum(j=1, k, W(i, j))); \\ Michel Marcus, Feb 25 2023
CROSSREFS
Sequence in context: A331398 A048968 A355956 * A372432 A092862 A112863
KEYWORD
nonn,tabl
AUTHOR
Clark Kimberling, Feb 02 2011
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 12 17:17 EDT 2024. Contains 372492 sequences. (Running on oeis4.)