A320022 Numbers equal to the sum of the aliquot parts of the following k numbers, for some k.
1, 3, 7, 9, 15, 31, 33, 56, 63, 127, 135, 168, 255, 511, 1023, 2047, 2401, 4095, 5328, 8191, 16383, 17360, 21003, 32767, 41163, 54721, 65535, 131071, 262143, 524287, 557280, 1048575, 1060801, 2097151, 4194303, 5026561, 8388607, 10800111, 11108163, 14366401, 16777215
Offset: 1
Keywords
Examples
1 is in the sequence because aliquot part of 2 is 1. 9 is in the sequence because aliquot parts of 10 are 1, 2, 5 and of 11 is 1: 1 + 2 + 5 + 1 = 9. 56 is in the sequence because aliquot parts of 57 are 1, 3, 19, of 58 are 1, 2, 29, of 59 is 1: 1 + 3 + 19 + 1 + 2 + 29 + 1 = 56.
Programs
-
Maple
with(numtheory): P:=proc(q) local a,j,k,n; for n from 1 to q do a:=0; k:=0; while a
Formula
a(n) = Sum_{i = 1..k} A001065(a(n)+i), for some k.
Extensions
a(38)-a(41) from Giovanni Resta, Oct 09 2018
Comments