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”).

A255616
Table read by antidiagonals, T(n,k) = floor(sqrt(k^n)), n >= 0, k >=1.
1
1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 2, 3, 2, 1, 1, 2, 4, 5, 4, 1, 1, 2, 5, 8, 9, 5, 1, 1, 2, 6, 11, 16, 15, 8, 1, 1, 2, 7, 14, 25, 32, 27, 11, 1, 1, 3, 8, 18, 36, 55, 64, 46, 16, 1, 1, 3, 9, 22, 49, 88, 125, 128, 81, 22, 1, 1, 3, 10, 27, 64, 129, 216, 279, 256, 140, 32, 1, 1, 3, 11, 31, 81, 181, 343, 529, 625, 512, 243, 45, 1
OFFSET
0,9
FORMULA
T(n,k) = floor(sqrt(k^n)), n >= 0, k >=1.
EXAMPLE
See table in the links.
MATHEMATICA
T[n_, k_] := Floor[Sqrt[k^n]]; Table[T[k, n + 1 - k], {n, 0, 15}, {k, 0, n}] (* G. C. Greubel, Dec 30 2017 *)
PROG
(PARI){for(i=1, 20, for(n=0, i-1, a=floor(sqrt((i-n)^n)); print1(a, ", ")))}
KEYWORD
nonn,tabl
AUTHOR
Kival Ngaokrajang, Feb 28 2015
EXTENSIONS
Terms a(81) onward added by G. C. Greubel, Dec 30 2017
STATUS
approved