OFFSET
1,3
COMMENTS
The relationship between a practical number and highest power of 2 that divides it provides an equivalence relation. Practical numbers whose prime factorization have the same exponent of 2.
LINKS
Frank M Jackson, Table of n, a(n) for n = 1..10000
EXAMPLE
a(9) = 2. A005153(9) = 20 and the greatest power of 2 that divides 20 is 2.
MATHEMATICA
plst=Last/@ReadList["https://oeis.org/A005153/b005153.txt", {Number, Number}]; lst={}; Do[If[OddQ[plst[[n]]], AppendTo[lst, 0], AppendTo[lst, Last@First@FactorInteger[plst[[n]]]]], {n, 1, 100}]; lst
CROSSREFS
KEYWORD
nonn
AUTHOR
Frank M Jackson, Dec 30 2024
STATUS
approved
