login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A372401 Position of 210^n among 7-smooth numbers A002473. 3
1, 68, 547, 2119, 5817, 13008, 25412, 45078, 74409, 116147, 173379, 249532, 348375, 474018, 630922, 823885, 1058051, 1338898, 1672260, 2064302, 2521535, 3050825, 3659361, 4354687, 5144682, 6037582, 7041946, 8166692, 9421074, 10814695, 12357491, 14059744, 15932086, 17985473 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,2
COMMENTS
Also position of 210^(n+1) in A147571.
LINKS
MATHEMATICA
Table[
Sum[Floor@ Log[7, 210^n/(2^i*3^j*5^k)] + 1,
{i, 0, Log[2, 210^n]},
{j, 0, Log[3, 210^n/2^i]},
{k, 0, Log[5, 210^n/(2^i*3^j)]}],
{n, 0, 12}]
PROG
(Python)
import heapq
from itertools import islice
from sympy import primerange
def A372401gen(p=7): # generator for p-smooth terms
v, oldv, psmooth_primes, = 1, 0, list(primerange(1, p+1))
h = [(1, [0]*len(psmooth_primes))]
idx = {psmooth_primes[i]:i for i in range(len(psmooth_primes))}
loc = 0
while True:
v, e = heapq.heappop(h)
if v != oldv:
loc += 1
if len(set(e)) == 1:
yield loc
oldv = v
for p in psmooth_primes:
vp, ep = v*p, e[:]
ep[idx[p]] += 1
heapq.heappush(h, (v*p, ep))
print(list(islice(A372401gen(), 15))) # Michael S. Branicky, Jun 05 2024
CROSSREFS
Sequence in context: A032510 A211691 A027850 * A248467 A281565 A281883
KEYWORD
nonn
AUTHOR
Michael De Vlieger, Jun 03 2024
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified June 26 14:29 EDT 2024. Contains 373718 sequences. (Running on oeis4.)