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!)
A188525 a(n) = rad(rad(n)^2+1), where rad = A007947. 1
2, 5, 10, 5, 26, 37, 10, 5, 10, 101, 122, 37, 170, 197, 226, 5, 290, 37, 362, 101, 442, 485, 530, 37, 26, 677, 10, 197, 842, 901, 962, 5, 1090, 1157, 1226, 37, 1370, 85, 1522, 101, 58, 1765, 370, 485, 226, 2117, 2210, 37, 10, 101, 2602, 677, 2810, 37 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
Charles R Greathouse IV, Table of n, a(n) for n = 1..10000
FORMULA
a(n) = A007947(A078615(n)+1). - R. J. Mathar, Apr 04 2011
EXAMPLE
a(7) = rad(rad(7)^2 + 1) = rad(7^2 + 1) = rad(50) = 10.
MAPLE
with(numtheory):
rad:= n-> mul(i, i=factorset(n)):
a:= n-> rad(rad(n)^2+1):
seq(a(n), n=1..70); # Alois P. Heinz, Apr 03 2011
MATHEMATICA
rad[n_] := Times @@ FactorInteger[n][[All, 1]];
a[n_] := rad[rad[n]^2 + 1];
Array[a, 70] (* Jean-François Alcover, Mar 27 2017 *)
PROG
(Magma) [ &*PrimeDivisors((&*PrimeDivisors(n))^2+1): n in [1..51] ]; // Bruno Berselli, Apr 04 2011
(PARI) rad(n)=my(f=factor(n)[, 1]); prod(i=1, #f, f[i])
a(n)=rad(rad(n)^2+1) \\ Charles R Greathouse IV, Aug 08 2013
CROSSREFS
Sequence in context: A224300 A175467 A361806 * A324503 A126842 A291933
KEYWORD
nonn,easy
AUTHOR
Jonathan Vos Post, Apr 03 2011
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 August 20 08:51 EDT 2024. Contains 375314 sequences. (Running on oeis4.)