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.

A047630 Numbers k that divide sigma(k) * phi(k) and are not divisible by 6.

This page as a plain text file.
%I A047630 #11 Aug 14 2021 02:16:36
%S A047630 1,28,40,117,135,196,200,224,496,640,775,819,891,1000,1372,1521,1550,
%T A047630 1568,1701,1792,2176,2325,2480,3100,3159,3200,3375,3724,4455,5000,
%U A047630 5632,5733,6200,6860,6875,6975,8128,9604,10240,10880,10935,10976,11907
%N A047630 Numbers k that divide sigma(k) * phi(k) and are not divisible by 6.
%D A047630 George E. Andrews, "Number Theory," Dover Books, NY, 1971, Page 84.
%t A047630 Do[ If[ Mod[ n, 6 ]!=0, If[ Mod[ DivisorSigma[ 1, n ]*EulerPhi[ n ], n ]==0, Print[ n ] ] ], {n, 1, 25000} ]
%Y A047630 Cf. A011775.
%K A047630 easy,nonn
%O A047630 1,2
%A A047630 _Robert G. Wilson v_, Jul 22 2000