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

A264898
Numbers m such that A155043(n+1) = A155043(n).
3
1, 3, 8, 9, 15, 24, 25, 49, 63, 81, 85, 121, 195, 229, 255, 361, 440, 442, 446, 451, 483, 528, 676, 729, 841, 1091, 1295, 1443, 1681, 1935, 2026, 2115, 2401, 2409, 2613, 2703, 3363, 3481, 3721, 3729, 3843, 3981, 3985, 3986, 3987, 4005, 4107, 4624, 4760, 4768
OFFSET
1,2
COMMENTS
A264893(a(n)) = 0.
LINKS
MATHEMATICA
Position[Differences@ Fold[Append[#1, 1 + #1[[#2 - DivisorSigma[0, #2] + 1]] ] &, {0}, Range[10^4]], 0][[All, 1]] - 1 (* Michael De Vlieger, Dec 09 2017 *)
PROG
(Haskell)
a264898 n = a264898_list !! (n-1)
a264898_list = filter ((== 0) . a264893) [0..]
CROSSREFS
Sequence in context: A101065 A152411 A080517 * A248194 A295289 A212849
KEYWORD
nonn
AUTHOR
Reinhard Zumkeller, Nov 27 2015
STATUS
approved