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

A282696
Positions of records in |A282695(n)| = |A055265(n)-n|.
3
1, 5, 12, 17, 54, 58, 106, 391, 467, 560, 667, 705, 3671, 7885, 9408, 9792, 9797, 51425, 76583, 77949, 78053, 94125, 185126, 185231, 198496, 569087, 674724, 678572, 2326155, 5468965, 8525842, 8526046, 10415643, 23003613, 51382797, 61727309, 71207280, 108334625
OFFSET
1,2
MAPLE
A282696 := proc()
local r, i, a282695;
r := -1 ;
for i from 1 do
a282695 := abs(A282695(i)) ;
if a282695 > r then
r := a282695 ;
printf("%d, \n", i) ;
end if;
end do:
end proc:
A282696() ; # R. J. Mathar, Apr 30 2017
PROG
(C++) See Links section.
CROSSREFS
KEYWORD
nonn
AUTHOR
N. J. A. Sloane, Feb 24 2017
EXTENSIONS
More terms from Rémy Sigrist, Nov 28 2021
STATUS
approved