login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 


A010783
Triangle of numbers floor(n/(n-k)).
3
1, 1, 2, 1, 1, 3, 1, 1, 2, 4, 1, 1, 1, 2, 5, 1, 1, 1, 2, 3, 6, 1, 1, 1, 1, 2, 3, 7, 1, 1, 1, 1, 2, 2, 4, 8, 1, 1, 1, 1, 1, 2, 3, 4, 9, 1, 1, 1, 1, 1, 2, 2, 3, 5, 10, 1, 1, 1, 1, 1, 1, 2, 2, 3, 5, 11, 1, 1, 1, 1, 1, 1, 2, 2, 3, 4, 6, 12
OFFSET
1,3
LINKS
MAPLE
T:= (n, k)-> floor(n/(n-k)):
seq (seq (T(n, k), k=0..n-1), n=1..15); # Alois P. Heinz, Jul 15 2011
PROG
(Haskell)
a010783 n k = (n + 1 - k) `div` k
a010783_row n = a010783_tabl !! (n-1)
a010783_tabl = map reverse a010766_tabl
-- Reinhard Zumkeller, Apr 29 2015
CROSSREFS
Cf. A010766 (mirrored).
Sequence in context: A055169 A205131 A175892 * A306680 A083312 A032435
KEYWORD
nonn,tabl
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | 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 September 23 23:02 EDT 2024. Contains 376185 sequences. (Running on oeis4.)