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!)
A320167 Regular triangle where T(n,k) = Sum (-1)^i, where the sum is over all factorizations of n into i factors that are all > 1 and <= k. 0
1, 0, -1, 0, 0, -1, 0, 1, 1, 0, 0, 0, 0, 0, -1, 0, 0, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, -1, 0, -1, -1, 0, 0, 0, 0, -1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -1, 0, 0, -1, 0, 0, 1, 1, 1, 1, 1, 1, 0, 0, 0, 0, 0, 0, 0 (list; table; graph; refs; listen; history; text; internal format)
OFFSET
1
LINKS
FORMULA
T(1,k) = 1, T(n,k) = -Sum_{d|n, 1 < d <= k} T(n/d,d).
EXAMPLE
Triangle begins:
1
0 -1
0 0 -1
0 1 1 0
0 0 0 0 -1
0 0 1 1 1 0
0 0 0 0 0 0 -1
0 -1 -1 0 0 0 0 -1
0 0 1 1 1 1 1 1 0
0 0 0 0 1 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 -1
0 0 -1 0 0 1 1 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 0 0 -1
0 0 0 0 0 0 1 1 1 1 1 1 1 0
0 0 0 0 1 1 1 1 1 1 1 1 1 1 0
0 1 1 1 1 1 1 2 2 2 2 2 2 2 2 1
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1
0 0 -1 -1 -1 0 0 0 1 1 1 1 1 1 1 1 1 0
0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 -1
0 0 0 0 0 0 0 0 0 1 1 1 1 1 1 1 1 1 1 0
MATHEMATICA
u[n_, k_]:=If[n==1, 1, -Sum[u[n/d, d], {d, Select[Rest[Divisors[n]], #<=k&]}]]
Table[u[n, k], {n, 20}, {k, n}]
CROSSREFS
Sequence in context: A129569 A266611 A286752 * A030658 A187950 A112539
KEYWORD
sign,tabl
AUTHOR
Gus Wiseman, Oct 22 2018
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 July 9 11:57 EDT 2024. Contains 374174 sequences. (Running on oeis4.)