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.

A081383 Least x = a(n) such that number of common prime factors (ignoring multiplicity) of sigma(x) = A000203(x) and phi(x) = A000010(x) equals n.

This page as a plain text file.
%I A081383 #21 Aug 28 2019 10:35:13
%S A081383 3,14,209,3596,41624,2003639,24206049,2562857198,57721363052
%N A081383 Least x = a(n) such that number of common prime factors (ignoring multiplicity) of sigma(x) = A000203(x) and phi(x) = A000010(x) equals n.
%C A081383 a(10) <= 6804704928496. - _Donovan Johnson_, Jun 15 2013
%F A081383 a(n) = min{x: A081396(x) = n}.
%e A081383 x = 209: sigma(209) = 240 = 2^4*3*5, phi(209) = 180 = 2^2*3^2*5, common factor set = {2,3,5}, so a(3) = 209.
%t A081383 ffi[x_] := Flatten[FactorInteger[x]] lf[x_] := Length[FactorInteger[x]] ba[x_] := Table[Part[ffi[x], 2*w-1], {w, 1, lf[x]}] t=Table[0, {10}]; Do[s=Length[Intersection[ba[EulerPhi[n]], ba[DivisorSigma[1, n]]]]; If[s<11&&t[[s]]==0, t[[s]]=n], {n, 1, 1000000}]; t
%o A081383 (PARI) a(n)=my(k=prod(i=1,n,prime(i))); while(omega(gcd(sigma(k),eulerphi(k)))!=n, k++); k \\ _Charles R Greathouse IV_, Feb 14 2013
%Y A081383 Cf. A000203, A000010, A081396.
%K A081383 nonn,more
%O A081383 1,1
%A A081383 _Labos Elemer_, Mar 28 2003
%E A081383 a(6)-a(8) from _Donovan Johnson_, May 24 2009
%E A081383 a(9) from _Donovan Johnson_, Jun 14 2013