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

A333261
Numbers k such that A071324(k) = A071324(k+1).
4
1, 5, 51, 68, 87, 116, 171, 176, 591, 2108, 2403, 7143, 8787, 9308, 18548, 19371, 27387, 32127, 34887, 37928, 40131, 140667, 180548, 192428, 200996, 433311, 521727, 934449, 2476671, 2617563, 3960896, 8198156, 9670748, 11892512, 16585748, 19113651, 25367396, 25643012
OFFSET
1,2
LINKS
Amiram Eldar, Table of n, a(n) for n = 1..89 (terms below 10^10)
EXAMPLE
1 is a term since A071324(1) = A071324(2) = 1.
5 is a term since A071324(5) = A071324(6) = 4.
MATHEMATICA
f[n_] := Plus @@ (-(d = Divisors[n])*(-1)^(Range[Length[d], 1, -1])); seq = {}; f1 = f[1]; Do[f2 = f[n]; If[f1 == f2, AppendTo[seq, n-1]]; f1 = f2, {n, 2, 50000}]; seq
SequencePosition[Table[Total[Times@@@Partition[Riffle[Reverse[Divisors[n]], {1, -1}, {2, -1, 2}], 2]], {n, 2565*10^4}], {x_, x_}][[All, 1]] (* Harvey P. Dale, Nov 06 2022 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Amiram Eldar, Mar 13 2020
STATUS
approved