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!)
A181811 a(n) = smallest integer that, upon multiplying any divisor of n, produces a member of A025487. 5
1, 1, 2, 1, 6, 2, 30, 1, 4, 6, 210, 2, 2310, 30, 12, 1, 30030, 4, 510510, 6, 60, 210, 9699690, 2, 36, 2310, 8, 30, 223092870, 12, 6469693230, 1, 420, 30030, 180, 4, 200560490130, 510510, 4620, 6, 7420738134810, 60, 304250263527210, 210, 24, 9699690 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,3
COMMENTS
Each member of A025487 appears infinitely often, and exactly once among odd values of n. a(m) = a(n) iff A000265(m) = A000265(n).
LINKS
FORMULA
If n = Product p(i)^e(i), then a(n) = Product A002110(i-1)^e(i). Sequence is completely multiplicative.
a(n) = A108951(n)/n.
a(n) = A108951(A064989(n)). - Antti Karttunen, Dec 31 2023
EXAMPLE
For any divisor d of 6 (d = 1, 2, 3, 6), 2d (2, 4, 6, 12) is always a member of A025487. 2 is the smallest integer with this relationship to 6; therefore, a(6)=2.
PROG
(Python)
from sympy import primerange, factorint
from operator import mul
from functools import reduce
def P(n): return reduce(mul, [i for i in primerange(2, n + 1)])
def a(n):
f = factorint(n)
return 1 if n==1 else (reduce(mul, [P(i)**f[i] for i in f]))//n
print([a(n) for n in range(1, 101)]) # Indranil Ghosh, May 14 2017
CROSSREFS
Sequence in context: A284434 A306543 A243484 * A284431 A333078 A352376
KEYWORD
nonn,mult
AUTHOR
Matthew Vandermast, Nov 30 2010
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 April 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)