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.

A226823 Numbers of the form 5^j + 8^k, for j and k >= 0.

This page as a plain text file.
%I A226823 #3 Jun 19 2013 02:27:41
%S A226823 2,6,9,13,26,33,65,69,89,126,133,189,513,517,537,626,633,637,689,1137,
%T A226823 3126,3133,3189,3637,4097,4101,4121,4221,4721,7221,15626,15633,15689,
%U A226823 16137,19721,32769,32773,32793,32893,33393,35893,48393,78126,78133,78189,78637
%N A226823 Numbers of the form 5^j + 8^k, for j and k >= 0.
%H A226823 T. D. Noe, <a href="/A226823/b226823.txt">Table of n, a(n) for n = 1..10000</a>
%t A226823 a = 5; b = 8; mx = 80000; Union[Flatten[Table[a^n + b^m, {m, 0, Log[b, mx]}, {n, 0, Log[a, mx - b^m]}]]]
%Y A226823 Cf. A004050 (2^j + 3^k), A226806-A226832 (cases to 8^j + 9^k).
%K A226823 nonn
%O A226823 1,1
%A A226823 _T. D. Noe_, Jun 19 2013