The OEIS mourns the passing of Jim Simons and is grateful to the Simons Foundation for its support of research in many branches of science, including the OEIS.
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!)
A261417 Numbers n such that both ceiling(sqrt(n)) and ceiling(n^(1/3)) divide n. 3
1, 2, 4, 6, 9, 12, 36, 56, 64, 90, 100, 110, 132, 144, 156, 210, 400, 576, 702, 729, 870, 900, 930, 1056, 1089, 1122, 1332, 1560, 2352, 2450, 2970, 3600, 4032, 4096, 4556, 4624, 4692, 5112, 5184, 5256, 5852, 7140, 8190, 9702, 9900, 12432, 14400, 15500, 15625, 16770, 16900, 17030, 18090, 18225, 18360, 19740 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
LINKS
MATHEMATICA
Select[Range[200000], Mod[#, Ceiling[#^(1/2)]] == Mod[#, Ceiling[#^(1/3)]] == 0 &] (* Vincenzo Librandi, Aug 21 2016 *)
PROG
(Magma)
[n: n in [1..2000] | n mod Ceiling((n^(1/2))) eq 0 and n mod Ceiling((n^(1/3))) eq 0 ];
(PARI) is(n) = Mod(n, ceil(sqrt(n)))==0 && Mod(n, ceil(n^(1/3)))==0 \\ Felix Fröhlich, Aug 21 2016
CROSSREFS
Intersection of A002620 and A261011. Contains A261206 as a subsequence.
Sequence in context: A364378 A005779 A351075 * A360393 A098387 A283525
KEYWORD
nonn,easy
AUTHOR
N. J. A. Sloane, Aug 26 2015
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 May 28 16:36 EDT 2024. Contains 372916 sequences. (Running on oeis4.)