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!)
A247246 Differences of consecutive Achilles numbers. 2

%I #41 Oct 01 2020 04:05:10

%S 36,92,88,104,40,68,148,27,125,64,104,4,153,27,171,29,20,196,232,144,

%T 56,312,280,108,188,199,113,67,189,72,344,16,112,232,268,63,45,392,

%U 292,32,76,8,80,587,50,147,456,184,288,488,115,772,137,36,40,212,248

%N Differences of consecutive Achilles numbers.

%C 29 is the first prime in this sequence, and it equals 1352 - 1323. Clearly, if the difference is prime, then these two Achilles numbers must be relatively prime, so primes appear in this sequence rarely. However, are there infinitely many n such that a(n) is prime?

%C The number 1 can also appear in this sequence, because it equals 5425069448 - 5425069447 = (2^3 * 26041^2) - (7^3 * 41^2 * 97^2). Does every natural number appear in this sequence? If so, do they appear infinitely often?

%H Amiram Eldar, <a href="/A247246/b247246.txt">Table of n, a(n) for n = 1..10000</a>

%H Carlos Rivera, <a href="http://www.primepuzzles.net/problems/prob_053.htm">Problem 53</a>, The Prime Puzzles and Problems Connection.

%H Eric Weisstein's World of Mathematics, <a href="http://mathworld.wolfram.com/AchillesNumber.html">Achilles number</a>.

%H Wikipedia, <a href="http://en.wikipedia.org/wiki/Achilles_number">Achilles number</a>.

%F a(n) = A052486(n+1) - A052486(n).

%p f:= proc(n) local E; E:= map(t->t[2], ifactors(n)[2]); min(E)>1 and igcd(op(E))=1 end proc:

%p Achilles:= select(f, [$1..10^5]):

%p seq(Achilles[i+1]-Achilles[i],i=1..nops(Achilles)-1); # _Robert Israel_, Dec 13 2014

%t achillesQ[n_] := With[{ee = FactorInteger[n][[All, 2]]}, Min[ee] > 1 && GCD @@ ee == 1];

%t Select[Range[10^4], achillesQ] // Differences (* _Jean-François Alcover_, Sep 26 2020 *)

%o (PARI) isA052486(n) = { n>1 & vecmin(factor(n)[, 2])>1 & !ispower(n); }

%o lista(nn) = {v = select(n->isA052486(n), vector(nn, i, i)); vector(#v-1, n, v[n+1] - v[n]);} \\ _Michel Marcus_, Nov 29 2014

%Y Cf. A052486, A076446, A053289.

%K nonn,easy

%O 1,1

%A _Eric Chen_, Nov 28 2014

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 9 23:14 EDT 2024. Contains 372354 sequences. (Running on oeis4.)