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!)
A285337 a(n) = denominator of A065642(n)/n. 4
1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 2, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 3, 1, 1, 8, 1, 5, 1, 1, 1, 3, 1, 4, 1, 1, 1, 2, 1, 1, 3, 1, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 5, 1, 1, 1, 1, 4, 1, 1, 1, 2, 1, 1, 1, 1, 1, 3, 1, 1, 1, 1, 1, 8, 1, 7, 1, 5, 1, 1, 1, 1, 1, 1, 1, 3, 1, 1, 1, 4, 1, 1, 1, 1, 1, 1, 1, 4 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,12
LINKS
PROG
(Scheme) (define (A285337 n) (denominator (/ (A065642 n) n)))
(Python)
from sympy import primefactors, prod, Integer
def a007947(n): return 1 if n<2 else prod(primefactors(n))
def a065642(n):
if n==1: return 1
r=a007947(n)
n += r
while a007947(n)!=r:
n+=r
return n
def a(n): return (a065642(n)/Integer(n)).denominator() # Indranil Ghosh, Apr 20 2017
CROSSREFS
Cf. A065642, A285100 (positions of ones), A284342 (positions of terms > 1).
Cf. A285336 for the numerator.
Sequence in context: A319094 A069283 A319430 * A328457 A340827 A360119
KEYWORD
nonn,frac
AUTHOR
Antti Karttunen, Apr 19 2017
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 25 09:22 EDT 2024. Contains 371967 sequences. (Running on oeis4.)