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!)
A129234 Triangle read by rows: T(n,k) = n/k + k - 1 if n mod k = 0; otherwise T(n,k)=0 (1 <= k <= n). 6
1, 2, 2, 3, 0, 3, 4, 3, 0, 4, 5, 0, 0, 0, 5, 6, 4, 4, 0, 0, 6, 7, 0, 0, 0, 0, 0, 7, 8, 5, 0, 5, 0, 0, 0, 8, 9, 0, 5, 0, 0, 0, 0, 0, 9, 10, 6, 0, 0, 6, 0, 0, 0, 0, 10, 11, 0, 0, 0, 0, 0, 0, 0, 0, 0, 11, 12, 7, 6, 6, 0, 7, 0, 0, 0, 0, 0, 12, 13, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 13, 14, 8, 0, 0, 0, 0, 8, 0, 0, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
Row sums = A129235: (1, 4, 6, 11, 10, 20, 14, ...). Moebius transform of A129234 = A129236. Inverse Moebius transform of A129234 = A129237.
LINKS
FORMULA
G.f. = G(t,z) = Sum_{k>=1} t^k*z^k*(k-(k-1)*z^k)/(1-z^k)^2. - Emeric Deutsch, Apr 17 2007
EXAMPLE
First few rows of the triangle:
1;
2, 2;
3, 0, 3;
4, 3, 0, 4;
5, 0, 0, 0, 5;
6, 4, 4, 0, 0, 6;
7, 0, 0, 0, 0, 0, 7;
...
MAPLE
T:=proc(n, k) if n mod k = 0 then n/k+k-1 else 0 fi end: for n from 1 to 16 do seq(T(n, k), k=1..n) od; # yields sequence in triangular form - Emeric Deutsch, Apr 17 2007
CROSSREFS
Sequence in context: A103516 A233558 A319929 * A213081 A127446 A046157
KEYWORD
nonn,tabl
AUTHOR
Gary W. Adamson, Apr 05 2007
EXTENSIONS
Edited by Emeric Deutsch, Apr 17 2007
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 June 4 10:52 EDT 2024. Contains 373096 sequences. (Running on oeis4.)