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”).

A329613
Numbers k such that A071187(k) <> A329614(k).
4
324, 1296, 2500, 5625, 9604, 10000, 11664, 20736, 21609, 38416, 50625, 58564, 60025, 82944, 90000, 114244, 131769, 160000, 194481, 234256, 236196, 250000, 257049, 334084, 345744, 360000, 366025, 456976, 521284, 614656, 640000, 714025, 717409, 751689, 810000, 944784, 960400, 1119364, 1172889, 1185921, 1265625, 1327104, 1336336
OFFSET
1,1
COMMENTS
All terms are squares; their square roots are in A329611.
LINKS
David A. Corneth, Table of n, a(n) for n = 1..15072 (first 661 terms from Antti Karttunen, terms <= 10^14)
David A. Corneth, PARI program
PROG
(PARI)
A034386(n) = prod(i=1, primepi(n), prime(i));
A108951(n) = { my(f=factor(n)); prod(i=1, #f~, A034386(f[i, 1])^f[i, 2]) }; \\ From A108951
A071187(n) = if(1==n, n, my(f = factor(numdiv(n))); vecmin(f[, 1]));
k=0; n=0; while(n<2^16, n++; u = n*n; if(A071187(u)!=A329614(u), k++; write("b329613.txt", k, " ", u); print1(u, ", ")));
(PARI) \\ See link
CROSSREFS
Subsequence of A000290.
Sequence in context: A241502 A014792 A287634 * A202094 A202486 A305070
KEYWORD
nonn
AUTHOR
Antti Karttunen, Nov 18 2019
STATUS
approved