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.

A275196 Odd numbers n such that sigma(n) does not divide sigma(n^3).

This page as a plain text file.
%I A275196 #31 Jul 27 2016 09:59:52
%S A275196 9,25,27,49,63,75,81,99,117,121,125,135,147,153,169,171,175,207,225,
%T A275196 243,245,261,275,289,297,325,333,343,361,363,369,375,387,405,425,441,
%U A275196 475,477,507,513,525,529,531,539,549,567,575,603,605,625,637,639,675,693,711,725,729
%N A275196 Odd numbers n such that sigma(n) does not divide sigma(n^3).
%C A275196 All terms are composite since sigma(p) = p + 1 and sigma(p^3) = p^3 + p^2 + p + 1 = (p + 1)(p^2 + 1) for p prime.
%C A275196 An odd number n with prime factorization Product_i p_i^(e_i) is in this sequence if and only if Product_i ((p_i^(3*e_i + 1) - 1)/(p_i^(e_i + 1) - 1)) is not an integer.
%C A275196 Nonsquare terms of this sequence are 27, 63, 75, 99, 117, 125, 135, 147, 153, 171, 175, 207, 243, 245, 261, 275, ...
%C A275196 Terms that are not perfect powers are 63, 75, 99, 117, 135, 147, 153, 171, 175, 207, 245, 261, 275, 297, 325, 333, 363, 369, 375, ...
%H A275196 Charles R Greathouse IV, <a href="/A275196/b275196.txt">Table of n, a(n) for n = 1..10000</a>
%e A275196 63 is a term because sigma(63^3) = 437200 is not divisible by sigma(63) = 104.
%t A275196 Select[2Range[400] - 1, Not[Divisible[DivisorSigma[1, #^3], DivisorSigma[1, #]]] &] (* _Alonso del Arte_, Jul 20 2016 *)
%o A275196 (PARI) isok(n) = sigma(n^3) % sigma(n) != 0 && n % 2 == 1
%Y A275196 Cf. A000203, A175926.
%K A275196 nonn
%O A275196 1,1
%A A275196 _Altug Alkan_, Jul 20 2016