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.

A036566 Numbers of form 7^i*8^j with i, j >= 0, sorted.

This page as a plain text file.
%I A036566 #19 Jul 06 2025 14:20:02
%S A036566 1,7,8,49,56,64,343,392,448,512,2401,2744,3136,3584,4096,16807,19208,
%T A036566 21952,25088,28672,32768,117649,134456,153664,175616,200704,229376,
%U A036566 262144,823543,941192,1075648,1229312,1404928,1605632,1835008,2097152
%N A036566 Numbers of form 7^i*8^j with i, j >= 0, sorted.
%C A036566 Could be rearranged as a triangle of numbers in which i-th row is {7^(i-j)*8^j, 0<=j<=i}; i >= 0. (This would produce a different sequence, of course).
%C A036566 The sum of the reciprocals of the terms of this sequence is equal to 4/3. Brief proof: as gcd(7, 8) = 1, 1 + 1/7 + 1/8 + 1/49 + 1/56 + 1/64 + 1/343 + ... = (Sum_{k>=0} 1/7^k) * (Sum_{m>=0} 1/8^m) = (1/(1-1/7)) * (1/(1-1/8)) = (7/(7-1)) * (8/(8-1)) = 4/3. - _Bernard Schott_, Oct 24 2019
%H A036566 Robert Israel, <a href="/A036566/b036566.txt">Table of n, a(n) for n = 1..10000</a>
%H A036566 Robert Sedgewick, <a href="http://www.cs.princeton.edu/~rs/talks/shellsort.ps">Analysis of shellsort and related algorithms</a>, Fourth European Symposium on Algorithms, Barcelona, September, 1996.
%F A036566 a(n) ~ exp(sqrt(2*log(7)*log(8)*n)) / sqrt(56). - _Vaclav Kotesovec_, Sep 25 2020
%F A036566 a(n) = 7^A025669(n) * 8^A025675(n). - _R. J. Mathar_, Jul 06 2025
%p A036566 N:= 10^7: # for all terms <= N
%p A036566 sort([seq(seq(7^i*8^j,j=0..floor(log[8](N/7^i))),i=0..floor(log[7](N)))]); # _Robert Israel_, Oct 24 2019
%t A036566 n = 10^6; Flatten[Table[7^i*8^j, {i, 0, Log[7, n]}, {j, 0, Log[8, n/7^i]}]] // Sort (* _Amiram Eldar_, Sep 26 2020 *)
%Y A036566 Subsequence of A003591.
%K A036566 easy,nonn
%O A036566 1,2
%A A036566 _David W. Wilson_