cp's OEIS Frontend

This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.

A373001 Positive integers that can be expressed in at least three ways as (x-y)*(x^3-y^3).

Original entry on oeis.org

1641000816, 1773440487, 2476486656, 20129719792, 26256013056, 28375047792, 39623786496, 106509692016, 132921066096, 143648679447, 200595419136, 218247135232, 322075516672, 420096208896, 454000764672, 600908378112, 631190070000, 633980583936, 877482798192, 1025625510000, 1108400304375
Offset: 1

Views

Author

David A. Corneth, May 19 2024

Keywords

Examples

			1773440487 is here via 1773440487 = (2706 - 2697) * (2706^3 - 2697^3) = (417 - 354) * (417^3 - 354^3) = (211 - 22) * (211^3 - 22^3).
		

Crossrefs

Cf. A352244.

Programs

  • 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
    }