This is a front-end for the Online Encyclopedia of Integer Sequences, made by Christian Perfect. The idea is to provide OEIS entries in non-ancient HTML, and then to think about how they're presented visually. The source code is on GitHub.
%I A078322 #24 Nov 12 2022 19:50:04 %S A078322 2,5,10,3,26,37,10,17,14,101,122,73,170,197,226,33,290,109,362,201, %T A078322 442,485,530,145,42,677,82,393,842,901,962,65,1090,1157,1226,217,1370, %U A078322 85,1522,401,58,1765,370,969,26,2117,2210,17,86,501,2602,1353,2810,65 %N A078322 a(n) = rad(n*rad(n)+1), where rad = A007947 (squarefree kernel). %C A078322 a(n) = A007947(A078310(n)). %H A078322 Reinhard Zumkeller, <a href="/A078322/b078322.txt">Table of n, a(n) for n = 1..10000</a> %e A078322 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. %p A078322 rad:= n-> mul(i, i=numtheory[factorset](n)): %p A078322 a:= n-> rad(n*rad(n)+1): %p A078322 seq(a(n), n=1..70); # _Alois P. Heinz_, May 04 2017 %t A078322 rad[n_] := Times @@ FactorInteger[n][[All, 1]]; Table[ rad[n*rad[n] + 1], {n, 1, 54}] (* _Jean-François Alcover_, Dec 03 2012 *) %o A078322 (Haskell) %o A078322 a078322 = a007947 . a078310 %o A078322 -- _Reinhard Zumkeller_, Oct 19 2011 %o A078322 (PARI) rad(n)=vecprod(factor(n)[,1]) %o A078322 a(n)=rad(n*rad(n)+1) \\ _Charles R Greathouse IV_, Jul 09 2013 %Y A078322 Cf. A007947, A078310, A078325. %K A078322 nonn,nice %O A078322 1,1 %A A078322 _Reinhard Zumkeller_, Nov 23 2002