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

A226779
Numbers n such that n'=(n+1)', where n' is the arithmetic derivative of n.
4
2, 777, 98433, 214388517, 152739317354
OFFSET
1,1
COMMENTS
a(6) > 10^13. - Giovanni Resta, Mar 13 2014
a(6) > 5*10^13. - Hiroaki Yamanouchi, Aug 27 2015
EXAMPLE
2' = 3' = 1
777' = 778' = 391
98433' = 98434' = 65631
214388517' = 214388518' = 107194261
MAPLE
with(numtheory); ListA226779:=proc(q) local a, b, n, p; a:=0;
for n from 2 to q do b:=n*add(op(2, p)/op(1, p), p=ifactors(n)[2]);
if a=b then print(n-1); fi; a:=b; od; end: ListA226779(10^12);
CROSSREFS
Sequence in context: A167448 A320481 A078169 * A375844 A243409 A281195
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Jun 18 2013
EXTENSIONS
a(5) from Giovanni Resta, Jun 18 2013
STATUS
approved