login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A078325
Squarefree numbers of the form m*rad(m)+1, where rad = A007947 (squarefree kernel).
7
2, 5, 10, 17, 26, 33, 37, 65, 73, 82, 101, 109, 122, 129, 145, 170, 197, 201, 217, 226, 257, 290, 362, 393, 401, 433, 442, 485, 501, 530, 577, 626, 649, 677, 730, 785, 842, 865, 901, 962, 969, 973, 1001, 1090, 1126, 1153, 1157, 1226, 1297, 1353, 1370, 1373
OFFSET
1,1
LINKS
MATHEMATICA
powQ[n_] := n == 1 || AllTrue[FactorInteger[n][[;; , 2]], # > 1 &]; Select[Range[1400], SquareFreeQ[#] && powQ[# - 1] &] (* Amiram Eldar, Jul 31 2022 *)
PROG
(Haskell)
a078325 n = a078325_list !! (n-1)
a078325_list = filter ((== 1) . a008966) a224866_list
-- Reinhard Zumkeller, Jul 23 2013
(PARI) is(n) = n>1 && issquarefree(n) && ispowerful(n-1); \\ Amiram Eldar, Jul 31 2022
CROSSREFS
Intersection of A005117 and A224866.
Sequence in context: A078393 A340045 A100292 * A059591 A082607 A303372
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 23 2002
STATUS
approved