A083265 Duplicate of A067391.
1, 1, 2, 3, 12, 20, 60, 210, 840, 504, 2520, 27720, 27720, 51480, 360360, 180180
Offset: 1
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.
a(7) = 5; the 5 non-divisors of 7 in 1..7 are 2, 3, 4, 5, and 6. The 5 partitions of 7 with max(p) - min(p) = 1 are [4,3], [3,2,2], [2,2,2,1], [2,2,1,1,1] and [2,1,1,1,1,1]. - _Emeric Deutsch_, Mar 01 2006
List([1..80],n->n-Tau(n)); # Muniru A Asiru, Sep 28 2018
a049820 n = n - a000005 n -- Reinhard Zumkeller, Feb 06 2012
A049820 := n->n-numtheory[tau](n): seq(A049820(n), n=1..100);
Table[n - DivisorSigma[0, n], {n, 100}] (* Wesley Ivan Hurt, Nov 19 2014 *) Array[(# - DivisorSigma[0, #])&, 70] (* Vincenzo Librandi, Dec 29 2015 *)
a(n)=n-numdiv(n)
(define (A049820 n) (- n (A000005 n))) ;; Antti Karttunen, Nov 27 2015
Comments