login
The OEIS is supported by the many generous donors to the OEIS Foundation.

 

Logo
Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A283167 a(0) = 1; a(2*n) = 2*a(n), a(2*n+1) = sigma(a(n)). 1
1, 1, 2, 1, 4, 3, 2, 1, 8, 7, 6, 4, 4, 3, 2, 1, 16, 15, 14, 8, 12, 12, 8, 7, 8, 7, 6, 4, 4, 3, 2, 1, 32, 31, 30, 24, 28, 24, 16, 15, 24, 28, 24, 28, 16, 15, 14, 8, 16, 15, 14, 8, 12, 12, 8, 7, 8, 7, 6, 4, 4, 3, 2, 1, 64, 63, 62, 32, 60, 72, 48, 60, 56, 56, 48, 60, 32, 31, 30, 24, 48, 60, 56, 56, 48, 60, 56, 56, 32, 31, 30 (list; graph; refs; listen; history; text; internal format)
OFFSET
0,3
LINKS
FORMULA
a(2*n) - a(2*n+1) = A033879(a(n)).
a(2*n+1) - a(2*n) = A033880(a(n)).
EXAMPLE
a(0) = 1;
a(1) = a(2*0+1) = sigma(a(0)) = sigma(1) = 1;
a(2) = a(2*1) = 2*a(1) = 2*1 = 2;
a(3) = a(2*1+1) = sigma(a(1)) = sigma(1) = 1;
a(4) = a(2*2) = 2*a(2) = 2*2 = 4;
a(5) = a(2*2+1) = sigma(a(2)) = sigma(2) = 1 + 2 = 3, etc.
MATHEMATICA
a[0] = 1; a[n_] := If[EvenQ[n], 2 a[n/2], DivisorSigma[1, a[(n - 1)/2]]]; Table[a[n], {n, 0, 90}]
PROG
(PARI) a(n) = if (n==0, 1, if (n%2==0, 2*a(n/2), sigma(a((n-1)/2)))); tabl(nn)={for (n=0, nn, print1(a(n), ", "); ); }; tabl(90) \\ Indranil Ghosh, Mar 03 2017
CROSSREFS
Sequence in context: A319521 A281589 A302436 * A355807 A355808 A080079
KEYWORD
nonn
AUTHOR
Ilya Gutkovskiy, Mar 02 2017
STATUS
approved

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Style Sheet | Transforms | Superseeker | Recents
The OEIS Community | Maintained by The OEIS Foundation Inc.

License Agreements, Terms of Use, Privacy Policy. .

Last modified April 25 10:34 EDT 2024. Contains 371967 sequences. (Running on oeis4.)