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

A211176
Numbers n which are the hypotenuse of a Pythagorean triple with n' as a leg, where n' is the arithmetic derivative of n.
1
125, 625, 23125, 142805, 210125, 371293, 7983625, 9370805, 25757525, 50062025, 120670225, 489766225, 881052625, 1471596725, 2307267625, 2489771125, 3145529225, 3474871553, 6975757441, 7977558641
OFFSET
1,1
COMMENTS
This sequence is a subsequence of A008846. - Ray Chandler, Jan 27 2017
FORMULA
A002144(n)^A002365(n) and A002144(n)^A002366(n) are terms of the sequence for all n. - Ray Chandler, Jan 27 2017
EXAMPLE
n = 23125, n' = 19125 and sqrt(n^2-n'^2) = 13000.
MAPLE
with(numtheory); ListA211176:= proc(q)local a, n, p;
for n from 2 to q do a:=n*add(op(2, p)/op(1, p), p=ifactors(n)[2]);
if n<>a and type(sqrt(n^2-a^2), integer) then print(n); fi;
od; end: ListA211176(10^9);
KEYWORD
nonn,more
AUTHOR
Paolo P. Lava, Feb 01 2013
EXTENSIONS
Name and Maple program corrected by Paolo P. Lava, Sep 30 2013
a(12)-a(16) from Donovan Johnson, Sep 30 2013
a(17)-a(18) from Ray Chandler, Jan 25 2017
a(19)-a(20) from Ray Chandler, Jan 27 2017
STATUS
approved