OFFSET
1,1
LINKS
James G. Merickel, Table of n, a(n) for n = 1..26
FORMULA
a(n) = A192203(n) + 1.
EXAMPLE
16467033=3*11*17*149*197,
16467034=2*19*23*83*227, and
16467035=5*13*37*41*167,
with no smaller similar trio. So a(1)=16467034. [Corrected by James G. Merickel, Jul 23 2015]
PROG
(PARI)
{
\\ This program checks all consecutives with elements not divisible \\
\\ by the squares of 2 or 3. More efficiency is required if enormous \\
\\ numbers of terms are sought and for the analog sequences beyond \\
\\ 6 prime factors. The start value is A093550(5). If a start other \\
\\ than this is chosen, one must be sure that (one of) s or u is \\
\\ adjusted if it needs to be. \\
n=16467034; s=[8, 4, 4, 4, 8, 8]; u=1;
while(1,
if(issquarefree(n) && issquarefree(n-1) && issquarefree(n+1) && omega(n)==5 && omega(n-1)==5 && omega(n+1)==5, print1(n" "));
n+=s[u];
if(u==6, u=1, u++)
)
} \\ James G. Merickel, Jul 23 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
James G. Merickel, Oct 28 2014
STATUS
approved