The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A156238 Smallest heptagonal number with n distinct prime factors. 5
7, 18, 286, 3010, 32890, 769230, 3333330, 159189030, 16015883940, 477463360374, 21643407275490, 1148540321999070, 18489352726664820, 4561561662153109614, 71000485538666794110, 14440652550858108745170, 927869754030522488795610 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(18) <= 150849873309136386205130310. - Donovan Johnson, Feb 15 2012
LINKS
Eric Weisstein's World of Mathematics, Heptagonal Numbers.
EXAMPLE
a(9) = 16015883940 = 2^2*3^2*5*7*17*19*23*29*59. 16015883940 is the smallest heptagonal number with 9 distinct prime factors.
PROG
(Python)
from sympy import primefactors
def A000566(n): return n*(5*n-3)//2
def a(n):
k = 1
while len(primefactors(A000566(k))) != n: k += 1
return A000566(k)
print([a(n) for n in range(1, 9)]) # Michael S. Branicky, Jul 18 2021
(Python) # faster version using heptagonal structure
from sympy import primefactors
def A000566(n): return n*(5*n-3)//2
def A000566_distinct_factors(n):
pf1 = primefactors(n)
pf2 = primefactors(5*n-3)
combined = set(pf1) | set(pf2)
return len(combined) if n%4 == 0 or (5*n-3)%4 == 0 else len(combined)-1
def a(n):
k = 1
while A000566_distinct_factors(k) != n: k += 1
return A000566(k)
print([a(n) for n in range(1, 10)]) # Michael S. Branicky, Jul 18 2021
CROSSREFS
Sequence in context: A196219 A219772 A219290 * A156295 A350216 A362309
KEYWORD
nonn
AUTHOR
Donovan Johnson, Feb 07 2009
EXTENSIONS
a(17) from Donovan Johnson, Jul 02 2011
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 May 15 02:58 EDT 2024. Contains 372536 sequences. (Running on oeis4.)