login

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”).

A261342
Numbers n such that either floor(n^(1/k)) or ceiling(n^(1/k)) divides n for all integers k >= 1.
4
1, 2, 3, 4, 6, 8, 9, 12, 15, 16, 20, 24, 30, 36, 42, 48, 56, 63, 64, 72, 80, 90, 100, 120, 132, 144, 156, 168, 195, 210, 224, 240, 288, 324, 360, 400, 420, 440, 528, 552, 576, 600, 624, 675, 702, 756, 840, 870, 900, 930, 960, 1056, 1155, 1260, 1332, 1368, 1560, 1680, 1764, 1848, 1980, 2352, 2600, 2704
OFFSET
1,2
COMMENTS
Largest known term is a(278) = 8947091986560.
If it exists, a(279) > 10^16.
Is this sequence finite?
LINKS
PROG
(PARI) { isA261342(n) = my(k, t1, t2); k=2; until(t2<=2, t1=floor(sqrtn(n+.5, k)); t2=ceil(sqrtn(n-.5, k)); if(n%t1 && n%t2, return(0)); k++); 1; }
CROSSREFS
Contains A261205, A261206, A261341 as subsequences.
Subsequence of A006446.
Sequence in context: A316860 A097273 A006446 * A002348 A019469 A081491
KEYWORD
nonn,more
AUTHOR
Max Alekseyev, Aug 15 2015
STATUS
approved