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.

A136294 Primes of the form a^a + b^b + c^c + d^d + e^e + f^f.

This page as a plain text file.
%I A136294 #6 May 13 2013 01:54:09
%S A136294 41,47,61,67,113,139,293,313,571,797,823,1307,3191,3391,3463,3643,
%T A136294 3947,4153,6257,6263,6793,7019,9433,12757,15629,15881,46687,46919,
%U A136294 46997,47681,49811,49843,50069,50321,53419,56039,56543,59183,93319
%N A136294 Primes of the form a^a + b^b + c^c + d^d + e^e + f^f.
%H A136294 A136294 Charles R Greathouse IV, <a href="/A136294/b136294.txt">Table of n, a(n) for n = 1..10000</a>
%F A136294 A000040 INTERSECTION {A000312(a) + A000312(b) + A000312(c) + A000312(d) + A000312(e) + A000312(f)}.
%e A136294 a(1) = 41 = 1^1 + 1^1 + 2^2 + 2^2 + 2^2 + 3^3.
%e A136294 a(2) = 47 = 2^2 + 2^2 + 2^2 + 2^2 + 2^2 + 3^3.
%e A136294 a(3) = 61 = 1^1 + 1^1 + 1^1 + 2^2 + 3^3 + 3^3.
%e A136294 a(4) = 67 = 1^1 + 2^2 + 2^2 + 2^2 + 3^3 + 3^3.
%e A136294 a(5) = 113 = 1^1 + 2^2 + 3^3 + 3^3 + 3^3 + 3^3.
%t A136294 Select[Union[ Flatten[Table[ a^a + b^b + c^c + d^d + e^e + f^f, {a, 1, 20}, {b, 1, a}, {c, 1, b}, {d, 1, c}, {e, 1, d}, {f, 1, e}]]], PrimeQ]
%o A136294 (PARI) v=[]; for(a=1, 30, for(b=1, a, for(c=1, b, for(d=1, c, for(e=1, d, for(f=1, e, if(ispseudoprime(t=a^a+b^b+c^c+d^d+e^e+f^f), v=concat(v, t)))))))); #v \\ _Charles R Greathouse IV_, Feb 15 2011
%Y A136294 Cf. A000040, A000312, A068145, A133664, A136292
%K A136294 easy,nonn
%O A136294 1,1
%A A136294 _Jonathan Vos Post_, Apr 11 2008