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!)
A373001 Positive integers that can be expressed in at least three ways as (x-y)*(x^3-y^3). 1
1641000816, 1773440487, 2476486656, 20129719792, 26256013056, 28375047792, 39623786496, 106509692016, 132921066096, 143648679447, 200595419136, 218247135232, 322075516672, 420096208896, 454000764672, 600908378112, 631190070000, 633980583936, 877482798192, 1025625510000, 1108400304375 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
1773440487 is here via 1773440487 = (2706 - 2697) * (2706^3 - 2697^3) = (417 - 354) * (417^3 - 354^3) = (211 - 22) * (211^3 - 22^3).
PROG
(PARI) is(n) = {
if(valuation(n, 3) == 1, return(0));
my(f = factor(n), cf = f, q, c, dc);
cf[, 2]>>=1;
c = factorback(cf);
dc = divisors(c);
for(i = 1, #dc,
dc2 = dc[i]^2;
dk = n/dc2;
if(dk > dc2 && (dk - dc2)%3 == 0,
D = dc2 + 4*(dk - dc2)/3;
if(issquare(D, &sD) && denominator((-dc[i] + sD)/2) == 1,
q++
)
)
);
q >= 3
}
CROSSREFS
Cf. A352244.
Sequence in context: A227444 A329463 A246250 * A126432 A186175 A202573
KEYWORD
nonn
AUTHOR
David A. Corneth, May 19 2024
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 June 25 21:12 EDT 2024. Contains 373712 sequences. (Running on oeis4.)