login

Revision History for A309853

(Bold, blue-underlined text is an addition; faded, red-underlined text is a deletion.)

Showing entries 1-10 | older changes
Array read by antidiagonals: ((z+sqrt(x))/2)^k + ((z-sqrt(x))/2)^k for columns k >= 0 and rows n >= 0, where x = 4*n+1 and y = ceiling(sqrt(x)) and z = y+1-(y mod 2).
(history; published version)
#23 by Sean A. Irvine at Tue Oct 22 23:42:27 EDT 2024
STATUS

proposed

approved

#22 by Michel Marcus at Fri Sep 27 06:38:15 EDT 2024
STATUS

editing

proposed

#21 by Michel Marcus at Fri Sep 27 06:37:49 EDT 2024
DATA

2, 1, 2, 1, 3, 2, 1, 7, 3, 2, 1, 18, 9, 5, 2, 1, 47, 27, 19, 5, 2, 1, 123, 81, 80, 21, 5, 2, 1, 322, 243, 343, 95, 23, 5, 2, 1, 843, 729, 1475, 433, 110, 25, 7, 2, 1, 2207, 2187, 6346, 1975, 527, 125, 39, 7, 2, 1, 5778, 6561, 27305, 9009, 2525, 625, 238, 41, 7, 2

STATUS

proposed

editing

Discussion
Fri Sep 27
06:38
Michel Marcus: one more term to get last antidiagonal complete : click on tabl to see
#20 by Charles L. Hohn at Fri Sep 27 03:27:46 EDT 2024
STATUS

editing

proposed

#19 by Charles L. Hohn at Fri Sep 27 03:24:08 EDT 2024
NAME

Array read by antidiagonals: ((z+sqrt(x))/2)^n k + ((z-sqrt(x))/2)^n k for columns n k >= 0 and rows k n >= 0, where x = 4*kn+1 and y = ceiling(sqrt(x)) and z = y+1-(y mod 2).

PROG

(PARI) T(k, n, k) = my(x = 4*kn+1, y = ceil(sqrt(x)), z = y+1-(y % 2)); round(((z+sqrt(x))/2)^n k + ((z-sqrt(x))/2)^nk);

matrix(9, 9, k, n, k, T(kn-1, n k-1)) \\ _Michel Marcus_, , Aug 22 2019

EXTENSIONS

Revised orientation of n and k to customary T(n, k), by Charles L. Hohn, Sep 27 2024

STATUS

approved

editing

#18 by N. J. A. Sloane at Sat Aug 31 23:09:51 EDT 2019
STATUS

proposed

approved

#17 by Charles L. Hohn at Tue Aug 27 00:45:20 EDT 2019
STATUS

editing

proposed

#16 by Charles L. Hohn at Tue Aug 27 00:37:26 EDT 2019
EXAMPLE

2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, ...

2, 3, 7, 18, 47, 123, 322, 843, 2207, 5778, 15127, ...

2, 3, 9, 27, 81, 243, 729, 2187, 6561, 19683, 59049, ...

2, 5, 19, 80, 343, 1475, 6346, 27305, 117487, 505520, 2175139, ...

2, 5, 21, 95, 433, 1975, 9009, 41095, 187457, 855095, 3900561, ...

2, 5, 23, 110, 527, 2525, 12098, 57965, 277727, 1330670, 6375623, ...

2, 5, 25, 125, 625, 3125, 15625, 78125, 390625, 1953125, 9765625, ...

2, 7, 39, 238, 1471, 9107, 56394, 349223, 2162591, 13392022, 82931199, ...

2, 7, 41, 259, 1649, 10507, 66953, 426643, 2718689, 17324251, 110395001, ...

2, 7, 43, 280, 1831, 11977, 78346, 512491, 3352399, 21929320, 143448043, ...

2, 7, 45, 301, 2017, 13517, 90585, 607061, 4068257, 27263677, 182709225, ...

STATUS

proposed

editing

Discussion
Tue Aug 27
00:45
Charles L. Hohn: No problem, I just pulled the last column. I will be making some other edits to this after its companion A309852 gets published, so please pause on this one in the meantime - thanks.
#15 by Michel Marcus at Thu Aug 22 02:00:20 EDT 2019
STATUS

editing

proposed

Discussion
Fri Aug 23
01:05
Jon E. Schoenfield: @Charles -- My comment was to say that the Example section _now_ has lines long enough to wrap around in some browsers, including the one I'm using.  (I'm still using Internet Explorer 11.  There's a long story there, and not very interesting.)  :-/

I'd be interested to know what percentage of OEIS users are using IE11.  If it's negligible, then I'd like to know, and I'll stop complaining about lines that wrap around in my browser.  :-)  But if it's not negligible, then I think it'd be a good idea to delete the last column of the table in the Example section.
#14 by Michel Marcus at Thu Aug 22 01:59:17 EDT 2019
PROG

(PARI) T(k, n) = my(x = 4*k+1, y = ceil(sqrt(x)), z = y+1-(y % 2)); round(((z+sqrt(x))/2)^n + ((z-sqrt(x))/2)^n);

matrix(9, 9, k, n, T(k-1, n-1)) \\ Michel Marcus, Aug 22 2019

STATUS

proposed

editing