Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).
%I #23 May 14 2016 02:21:16
%S 5425069447,11968683934831,28821995554247,48689748233307
%N Numbers n such that both n and n+1 are Achilles numbers (A052486).
%C Any term of the sequence is also a term of A227297, but the converse is not always true. The smallest term of A227297 where the converse fails is A227297(1) = 12167. Do any other such numbers exist?
%H Wikipedia, <a href="https://en.wikipedia.org/wiki/Achilles_number">Achilles number</a>
%e 5425069447 = 7^3 * 41^2 * 97^2 and 5425069448 = 2^3 * 26041^2. Since every prime factor of 5425069447 and 5425069448 is repeated, both numbers are Achilles numbers (A052486) and since the two numbers differ by 1, i.e., the value of A247246 at the index of 5425069447 in A052486 is 1, 5425069447 is a term of the sequence.
%o (PARI) is(n) = vecmin(factor(n)[, 2]) > 1 && vecmin(factor(n+1)[, 2]) > 1 && !ispower(n) && !ispower(n+1)
%Y Cf. A052486, A227297, A247246.
%K nonn,hard,more
%O 1,1
%A _Felix Fröhlich_, May 12 2016