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.

A166604 Numbers k such that Sum_{i=1..k} i^4 divides Product_{i=1..k} i^4.

This page as a plain text file.
%I A166604 #14 May 09 2020 10:42:52
%S A166604 1,31,59,94,104,122,133,181,206,223,244,248,283,298,318,342,356,401,
%T A166604 406,421,422,439,444,449,451,469,479,493,496,507,528,532,536,541,555,
%U A166604 597,631,637,643,668,701,706,712,717,721,722,754,762,795,797,801,815,842
%N A166604 Numbers k such that Sum_{i=1..k} i^4 divides Product_{i=1..k} i^4.
%H A166604 Harvey P. Dale, <a href="/A166604/b166604.txt">Table of n, a(n) for n = 1..3000</a>
%e A166604 a(2) = A125314(4) = 31.
%t A166604 k = s = 1; p = 1; lst = {}; While[k < 1000, If[ Mod[p, s] == 0, AppendTo[lst, k]]; k++; s = s + k^4; p = p*k^4]; lst (* _Robert G. Wilson v_, Nov 02 2009 *)
%t A166604 Module[{nn=1000,c},c=Range[nn]^4;Select[Range[nn],Divisible[Times@@ Take[ c,#], Total[Take[c,#]]]&]] (* _Harvey P. Dale_, Dec 18 2013 *)
%Y A166604 Cf. A125314, A166602, A060462, A166605, A166606, A166607, A166608, A166609, A166610, A181426, A334734.
%K A166604 nonn
%O A166604 1,2
%A A166604 _Alexander Adamchuk_, Oct 18 2009
%E A166604 a(15)-a(53) from _Robert G. Wilson v_, Nov 02 2009