OFFSET
1,2
COMMENTS
Subsequence of A055744.
These numbers can be used to find terms from A055744. For instance, 294 = 2 * 3 * 7^2, so for all a, b, c >= 0, all numbers of the form 294 * 2^a * 3^b * 7^c are in A055744.
No two terms in this sequence can be used to find the same term from A055744 with this method, as every term in this sequence has a different set of distinct prime factors. This is because any two numbers that do not have the same set of distinct prime factors are different, by the fundamental theorem of arithmetic.
Also, a complete list of terms of this sequence up to n enables the computation of all terms of A055744 up to at least n.
The squarefree kernel (or radical, see A007947) of the terms of this sequence is different from the radical of all lesser terms of A055744. - Michel Marcus, Aug 06 2015
LINKS
David A. Corneth, Table of n, a(n) for n = 1..2553 (all < 10^11)
EXAMPLE
PROG
(PARI) isA055744(n)=my(f=factor(n)); f[, 1]==factor(eulerphi(f))[, 1]
is(n)=my(f=factor(n), r=factorback(f[, 1])); for(i=1, #f~, f[i, 2]--); sumdiv(f, d, isA055744(d*r))==1 \\ Charles R Greathouse IV, May 26 2015
CROSSREFS
KEYWORD
nonn
AUTHOR
David A. Corneth, Mar 28 2015
STATUS
approved