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.

A130292 Numbers that are sums of fifth powers of two distinct primes.

This page as a plain text file.
%I A130292 #10 Sep 21 2024 08:43:05
%S A130292 275,3157,3368,16839,17050,19932,161083,161294,164176,177858,371325,
%T A130292 371536,374418,388100,532344,1419889,1420100,1422982,1436664,1580908,
%U A130292 1791150,2476131,2476342,2479224,2492906,2637150,2847392,3895956
%N A130292 Numbers that are sums of fifth powers of two distinct primes.
%C A130292 This is to 5th powers as A120398 is to cubes and A130873 is to 4th powers.
%e A130292 a(1) = prime(1)^5 + prime(2)^5 = 2^5 + 3^5 = 32 + 243 = 275.
%t A130292 Select[Sort[ Flatten[Table[Prime[n]^5 + Prime[k]^5, {n, 15}, {k, n - 1}]]], # <= Prime[15^5] &]
%Y A130292 Cf. A000040, A050997, A120398, A122616, A130873.
%K A130292 easy,nonn
%O A130292 1,1
%A A130292 _Jonathan Vos Post_, Aug 06 2007