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!)
A371278 Numbers k > 1 such that k / A054841(k) is an integer. 0
2, 4, 12, 16, 144, 192, 256, 1728, 3888, 4320, 6480, 7200, 11520, 13122, 14580, 15360, 20736, 36864, 49152, 65536, 107520, 344064, 384000, 589824, 691200, 1244160, 1259712, 1327104, 2211840, 2304960, 2963520, 2985984, 3932160, 3981312, 4478976, 4500000 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
EXAMPLE
k = 144: A054841(144) = 24 because 144 = 3^2 * 2^4, 144/A054841(144) = 144/24 = 6, thus 144 is a term.
MATHEMATICA
q[n_] := Module[{f = FactorInteger[n]}, Divisible[n, Total[10^(PrimePi[f[[;; , 1]]] - 1) * f[[;; , 2]]]]]; q[1] = False; Select[Range[10^5], q] (* Amiram Eldar, Mar 17 2024 *)
PROG
(Python)
from sympy import factorint, primepi
def ok(n): return n > 1 and n%sum(e*10**(primepi(p)-1) for p, e in factorint(n).items()) == 0
print([k for k in range(10**4) if ok(k)]) # Michael S. Branicky, Mar 17 2024
CROSSREFS
Cf. A054841, A001146 (a subsequence).
Sequence in context: A097001 A233191 A192533 * A085931 A125885 A067929
KEYWORD
nonn
AUTHOR
Ctibor O. Zizka, Mar 17 2024
EXTENSIONS
More terms from Michel Marcus, Mar 17 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 12 11:18 EDT 2024. Contains 373331 sequences. (Running on oeis4.)