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.

A279537 Numbers of the form 2^i * 6^j * 30^k.

This page as a plain text file.
%I A279537 #12 Feb 18 2021 02:32:27
%S A279537 1,2,4,6,8,12,16,24,30,32,36,48,60,64,72,96,120,128,144,180,192,216,
%T A279537 240,256,288,360,384,432,480,512,576,720,768,864,900,960,1024,1080,
%U A279537 1152,1296,1440,1536,1728,1800,1920
%N A279537 Numbers of the form 2^i * 6^j * 30^k.
%H A279537 Charles R Greathouse IV, <a href="/A279537/b279537.txt">Table of n, a(n) for n = 1..10000</a>
%F A279537 Sum_{n>=1} 1/a(n) = 72/29. - _Amiram Eldar_, Feb 18 2021
%t A279537 mx = 6000; Take[ Sort[ Flatten[ Table[2^i*6^j*30^k, {i, 0, Log[2, mx]}, {j, 0, Log[6, mx]}, {k, 0, Log[30, mx]}]]], 60] (* _Robert G. Wilson v_, Dec 14 2016 *)
%o A279537 (PARI) list(lim)=my(v=List(),x,y); for(k=0,logint(lim\=1,30), y=30^k; for(j=0,logint(lim\y,6), x=y*6^j; while(x<=lim, listput(v,x); x<<=1))); Set(v)
%Y A279537 Intersection of A025487 and A051037.
%Y A279537 Cf. A025610.
%K A279537 nonn
%O A279537 1,2
%A A279537 _Charles R Greathouse IV_, Dec 14 2016