cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

Showing 1-1 of 1 results.

A261897 Triangle read by rows: T(n,k) (1 <= k <= n+1) = number of sequences of length n, dominated by the squares, with entries from [0,k] and largest entry k.

Original entry on oeis.org

1, 1, 1, 0, 2, 1, 0, 2, 3, 1, 0, 2, 5, 4, 1, 0, 0, 7, 9, 5, 1, 0, 0, 7, 16, 14, 6, 1, 0, 0, 7, 23, 30, 20, 7, 1, 0, 0, 7, 30, 53, 50, 27, 8, 1, 0, 0, 7, 37, 83, 103, 77, 35, 9, 1, 0, 0, 0, 44, 120, 186, 180, 112, 44, 10, 1, 0, 0, 0, 44, 164, 306, 366, 292, 156, 54, 11, 1
Offset: 0

Views

Author

N. J. A. Sloane, Sep 05 2015

Keywords

Comments

A242105 gives the first nonzero terms per row, without repetitions. - Reinhard Zumkeller, Sep 06 2015

Examples

			Triangle begins:
1,
1,1,
0,2,1,
0,2,3,1,
0,2,5,4,1,
0,0,7,9,5,1,
0,0,7,16,14,6,1,
0,0,7,23,30,20,7,1,
0,0,7,30,53,50,27,8,1,
0,0,7,37,83,103,77,35,9,1,
0,0,0,44,120,186,180,112,44,10,1,
0,0,0,44,164,306,366,292,156,54,11,1,
...
		

Crossrefs

Cf. A242105, A261930 (row sums).

Programs

  • Haskell
    a261897 n k = a261897_tabl !! n !! (k-1)
    a261897_row n = a261897_tabl !! n
    a261897_tabl = [1] : f 1 0 [1] where
       f t h xs | t <= (h + 1) ^ 2  = ys : f (t + 1) h ys
                | otherwise         = ys' : f (t + 1) (h + 1) ys'
                where ys = zipWith (+) ([0] ++ xs) (xs ++ [0])
                      ys' = zipWith (+) ([0] ++ xs) (us ++ (0:vs) ++ [0])
                      (us, _:vs) = splitAt h xs
    -- Reinhard Zumkeller, Sep 06 2015
Showing 1-1 of 1 results.