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.

A268418 Numbers other than prime powers divisible by the sum, the sum of squares and the sum of cubes of their prime divisors.

This page as a plain text file.
%I A268418 #10 Feb 05 2016 11:32:03
%S A268418 12192180,15724800,24384360,31449600,36576540,47174400,48768720,
%T A268418 60960900,62899200,73153080,78624000,85345260,94348800,97537440,
%U A268418 109729620,110073600,121921800,125798400,134113980,141523200,146306160,157248000,158498340,170690520,182882700,188697600,195074880
%N A268418 Numbers other than prime powers divisible by the sum, the sum of squares and the sum of cubes of their prime divisors.
%H A268418 Charles R Greathouse IV, <a href="/A268418/b268418.txt">Table of n, a(n) for n = 1..100</a>
%H A268418 Jean-Marie de Koninck, Florian Luca, <a href="http://dx.doi.org/10.1016/j.jnt.2007.01.010">Integers divisible by sums of powers of their prime factors</a>, Journal of Number Theory, Volume 128, Issue 3, March 2008, Pages 557-563.
%o A268418 (PARI) isok(n) = my(f = factor(n)[,1]); (#f>2) && ((n % vecsum(f)) == 0) && ((n % sum(k=1, #f, f[k]^2)) == 0) && ((n % sum(k=1, #f, f[k]^3)) == 0);
%Y A268418 Intersection of A268373 and A066031 and A190882.
%Y A268418 Intersection of A268373 and A268417.
%K A268418 nonn
%O A268418 1,1
%A A268418 _Michel Marcus_, Feb 04 2016