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!)
A114006 Row sums of number triangle A114004. 5
1, -1, -1, 1, -1, 3, -1, -1, 1, 3, -1, -5, -1, 3, 3, 1, -1, -5, -1, -5, 3, 3, -1, 7, 1, 3, -1, -5, -1, -13, -1, -1, 3, 3, 3, 13, -1, 3, 3, 7, -1, -13, -1, -5, -5, 3, -1, -9, 1, -5, 3, -5, -1, 7, 3, 7, 3, 3, -1, 31, -1, 3, -5, 1, 3, -13, -1, -5, 3, -13, -1, -25, -1, 3, -5, -5, 3, -13, -1, -9, 1, 3, -1, 31, 3, 3, 3, 7, -1, 31, 3, -5, 3, 3, 3, 11 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,6
COMMENTS
A signed version of A050328.
LINKS
FORMULA
a(n) = A008836(n) * A050328(n). - Antti Karttunen, May 27 2017
a(1) = 1; a(n) = Sum_{d|n, d < n} mu(n/d) * a(d). - Ilya Gutkovskiy, Feb 23 2020
MATHEMATICA
a050328[n_]:=If[n==1, n, Sum[If[(d<n && SquareFreeQ[n/d]), a050328[d], 0], {d, Divisors[n]}]]; a[n_]:=(-1)^PrimeOmega[n]*a050328[n]; Table[a[n], {n, 100}] (* Indranil Ghosh, May 27 2017 *)
PROG
(PARI)
A050328(n) = if(1==n, n, sumdiv(n, d, if((d<n && issquarefree(n/d)), A050328(d), 0)));
A114006(n) = ((-1)^bigomega(n) * A050328(n)); \\ Antti Karttunen, May 27 2017
CROSSREFS
Sequence in context: A029356 A334019 A291448 * A050328 A191278 A363085
KEYWORD
easy,sign
AUTHOR
Paul Barry, Nov 12 2005
EXTENSIONS
More terms, incorrect formulas replaced by a correct one - Antti Karttunen, May 27 2017
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 April 24 22:17 EDT 2024. Contains 371964 sequences. (Running on oeis4.)