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.
%I A243823 #25 May 10 2016 18:14:02 %S A243823 0,0,0,0,0,0,0,1,1,1,0,1,0,3,3,4,0,3,0,5,5,6,0,6,3,8,6,9,0,5,0,11,8, %T A243823 11,7,11,0,13,10,14,0,12,0,16,14,17,0,18,5,19,14,20,0,21,11,22,16,23, %U A243823 0,19,0,25,20,26,13,25,0,27,20,27,0,31,0,30,27,31,13,32,0,35,23,34,0,33,17,36,25,38,0,35,15,39,27,40,19,45,0,44,32,46 %N A243823 Quantity of "semitotatives," numbers m < n that are products of at least one prime divisor p of n and one prime q coprime to n. %C A243823 Semitotatives m < n have a regular factor that is the product of prime divisors of n, and a coprime factor that is the product of primes q that are coprime to n. %C A243823 The unit fractions of semitotatives have a mixed recurrent expansion in base n (See Hardy & Wright). %D A243823 G. H. Hardy and E. M. Wright, An Introduction to the Theory of Numbers, Sixth Edition, Oxford University Press, 2008, pages 144-145 (last part of Theorem 136). %H A243823 Michael De Vlieger, <a href="/A243823/b243823.txt">Table of n, a(n) for n = 1..10000</a> %H A243823 M. De Vlieger, <a href="http://dx.doi.org/10.1145/2077808.2077809">Exploring Number Bases as Tools</a>, ACM Inroads, March 2012, Vol. 3, No. 1, pp. 4-12. %F A243823 a(n) = A045763(n) - A243822(n). %F A243823 a(n) = n + 1 - phi(n) - Sum_{1 <= k <= n, gcd(n, k) = 1} mu(k)*floor(n/k). - _Michael De Vlieger_, May 10 2016, after _Benoit Cloitre_ at A010846. %e A243823 For n = 10 with prime divisors {2, 5} and prime totatives {3, 7}, the only semitotative is 6. For n = 16, with the prime divisor 2 and the prime totatives {3, 5, 7, 11, 13}, there are four semitotatives {6, 10, 12, 14}. %p A243823 f:= n -> n + 1 - numtheory:-phi(n) - add(numtheory:-mobius(k)*floor(n/k), k=select(t -> igcd(n,t)=1, [$1..n])): %p A243823 map(f, [$1..100]); # _Robert Israel_, May 10 2016 %t A243823 Table[n + 1 - EulerPhi@ n - Total[MoebiusMu[#] Floor[n/#] &@ Select[Range@ n, CoprimeQ[#, n] &]], {n, 120}] (* _Michael De Vlieger_, May 10 2016 *) %Y A243823 Cf. A045763, A243822. %K A243823 nonn %O A243823 1,14 %A A243823 _Michael De Vlieger_, Jun 11 2014