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!)
A261341 Numbers n such that round(n^(1/k)) divides n for all integers k>=1. 3
1, 2, 4, 6, 12, 30, 36, 42, 72, 240, 420, 600, 900, 1560, 1764, 3600, 6084, 8100, 46440, 1742400, 4062240, 35814240 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,2
COMMENTS
There are no other terms below 10^16.
Is this a finite sequence?
LINKS
MATHEMATICA
isA[n_] :=
Block[{t},
For[k = 2, (t = Floor[1/2 + n^(1/k)]) >= 2, k++,
If[Mod[n, t] != 0, Return[False]]]; Return[True]]
Select[Range[1, 100000], isA[#] &] (* Julien Kluge, Apr 04 2016 *)
PROG
(PARI) { isA261341(n) = my(k, t); k=2; until(t<=2, t=round(sqrtn(n, k)); if(n%t, return(0)); k++); 1; }
CROSSREFS
Subsequence of A006446 and A261342.
Sequence in context: A332345 A095912 A143474 * A220423 A335068 A372092
KEYWORD
nonn,more
AUTHOR
Max Alekseyev, Aug 15 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 14 10:41 EDT 2024. Contains 372532 sequences. (Running on oeis4.)