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!)
A355139 The indices where A355061(n) = 6. 2
3, 7, 11, 19, 46, 75, 113, 138, 169, 186, 227, 240, 287, 374, 382, 481, 528, 536, 672, 713, 722, 760, 836, 922, 972, 1015, 1031, 1052, 1077, 1122, 1144, 1235, 1244, 1371, 1392, 1466, 1549, 1613, 1669, 1859, 1938, 2059, 2109, 2118, 2127, 2391, 2557, 2661, 2730, 2739, 2765, 2798, 2949, 2962 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
See A355061 for further details.
LINKS
PROG
(Python)
from sympy import primefactors
from itertools import count, islice
def agen(): # generator of terms
an1, an, f1, f, pset = 2, 6, {2}, {2, 3}, {2, 12}
for n in count(4):
if an == 6: yield n-1
an2, an1, an, f2, f1 = an1, an, 6, f1, f
f = set(primefactors(an))
while an*an1 in pset or f1&f == set() or f2&f != set() or f <= f1:
an += 1; f = set(primefactors(an))
pset.add(an*an1)
print(list(islice(agen(), 54))) # Michael S. Branicky, Jun 20 2022
CROSSREFS
Sequence in context: A132453 A033871 A060288 * A191245 A282914 A284027
KEYWORD
nonn
AUTHOR
Scott R. Shannon, Jun 20 2022
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 September 15 08:55 EDT 2024. Contains 375932 sequences. (Running on oeis4.)