cp's OEIS Frontend

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.

A048984 As n runs through composite numbers, a(n) = number of nonprime d < n such that gcd(d,n) = 1.

This page as a plain text file.
%I A048984 #13 Oct 25 2019 21:19:58
%S A048984 1,1,1,3,2,1,2,4,3,1,2,6,4,1,12,5,10,5,1,6,11,7,15,3,8,14,6,2,8,12,10,
%T A048984 3,28,7,19,11,4,26,10,22,14,2,14,20,15,32,5,15,27,8,6,17,21,17,41,6,
%U A048984 12,33,20,4,43,21,35,19,3,50,22,38,24,50,10,19,37
%N A048984 As n runs through composite numbers, a(n) = number of nonprime d < n such that gcd(d,n) = 1.
%C A048984 It appears that a(n) = A048864(A002808(n)). - _Michel Marcus_, Jul 14 2013
%F A048984 a(n) = A048983(n) + 1. - _Michel Marcus_, Jul 14 2013
%e A048984 9 is 4th composite number, gcd(9,1) = gcd(9,4) = gcd(9,8) = 1, so a(4) = 3.
%o A048984 (PARI) ai(nn) = {forcomposite (n=1, nn, nb = 0; for(d=1, n-1, if (! isprime(d) && gcd(n, d) == 1, nb++)); print1(nb, ", "););} \\ _Michel Marcus_, Jul 14 2013
%Y A048984 Cf. A000010, A048983, A002808.
%K A048984 easy,nonn
%O A048984 1,4
%A A048984 _Naohiro Nomoto_