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!)
A078322 a(n) = rad(n*rad(n)+1), where rad = A007947 (squarefree kernel). 4
2, 5, 10, 3, 26, 37, 10, 17, 14, 101, 122, 73, 170, 197, 226, 33, 290, 109, 362, 201, 442, 485, 530, 145, 42, 677, 82, 393, 842, 901, 962, 65, 1090, 1157, 1226, 217, 1370, 85, 1522, 401, 58, 1765, 370, 969, 26, 2117, 2210, 17, 86, 501, 2602, 1353, 2810, 65 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) = A007947(A078310(n)).
LINKS
EXAMPLE
a(25) = rad(25*rad(25)+1) = rad(25*rad(5^2)+1) = rad(25*5+1) = rad(125+1) = rad(126) = rad(2*3*3*7) = 2*3*7 = 42.
MAPLE
rad:= n-> mul(i, i=numtheory[factorset](n)):
a:= n-> rad(n*rad(n)+1):
seq(a(n), n=1..70); # Alois P. Heinz, May 04 2017
MATHEMATICA
rad[n_] := Times @@ FactorInteger[n][[All, 1]]; Table[ rad[n*rad[n] + 1], {n, 1, 54}] (* Jean-François Alcover, Dec 03 2012 *)
PROG
(Haskell)
a078322 = a007947 . a078310
-- Reinhard Zumkeller, Oct 19 2011
(PARI) rad(n)=vecprod(factor(n)[, 1])
a(n)=rad(n*rad(n)+1) \\ Charles R Greathouse IV, Jul 09 2013
CROSSREFS
Sequence in context: A022831 A064365 A177356 * A252867 A352199 A194356
KEYWORD
nonn,nice
AUTHOR
Reinhard Zumkeller, Nov 23 2002
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 15 13:23 EDT 2024. Contains 372540 sequences. (Running on oeis4.)