Open main menu
Home
Random
Recent changes
Special pages
Community portal
Preferences
About Wikipedia
Disclaimers
Incubator escapee wiki
Search
User menu
Talk
Dark mode
Contributions
Create account
Log in
Editing
Power of two
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
{{short description|Two raised to an integer power}} {{other uses}} [[Image:powers_of_two_cuboids.svg|thumb|Visualization of powers of two from 1 to 1024 (2<sup>0</sup> to 2<sup>10</sup>) as base-2 [[Dienes blocks]] ]] A '''power of two''' is a number of the form {{math|2<sup>''n''</sup>}} where {{mvar|n}} is an [[integer]], that is, the result of [[exponentiation]] with number [[2|two]] as the [[Base (exponentiation)|base]] and integer {{mvar|n}} as the [[exponent]]. In the [[fast-growing hierarchy]], {{math|2<sup>''n''</sup>}} is exactly equal to <math> f_1^n(1)</math>. In the [[Hardy hierarchy]], {{math|2<sup>''n''</sup>}} is exactly equal to <math> H_{\omega{n}}(1)</math>. Powers of two with [[Sign (mathematics)#Terminology for signs|non-negative]] exponents are integers: {{math|1=2<sup>0</sup> = 1}}, {{math|1=2<sup>1</sup> = 2}}, and {{math|2<sup>''n''</sup>}} is two [[multiplication|multiplied]] by itself {{mvar|n}} times.<ref>{{cite book |title=Schaum's Outline of Theory and Problems of Essential Computer Mathematics |first=Seymour |last=Lipschutz |year=1982 |isbn=0-07-037990-4 |page=3 |publisher=McGraw-Hill |location=New York}}</ref><ref>{{cite book |title=Mathematics Masterclasses |first=Michael J. |last=Sewell |year=1997 |isbn=0-19-851494-8 |page=[https://archive.org/details/mathematicsmaste0000unse/page/78 78] |publisher=Oxford University Press |location=Oxford |url=https://archive.org/details/mathematicsmaste0000unse/page/78 }}</ref> The first ten powers of 2 for non-negative values of {{mvar|n}} are: :[[1]], [[2]], [[4]], [[8]], [[16 (number)|16]], [[32 (number)|32]], [[64 (number)|64]], [[128 (number)|128]], [[256 (number)|256]], [[512 (number)|512]], ... {{OEIS|A000079}} By comparison, powers of two with [[negative exponents]] are [[fraction]]s: for positive integer {{mvar|n}}, {{math|2<sup>β''n''</sup>}} is [[one half]] multiplied by itself {{math|''n''}} times. Thus the first few negative powers of 2 are {{sfrac|1|2}}, {{sfrac|1|4}}, {{sfrac|1|8}}, {{sfrac|1|16}}, etc. Sometimes these are called ''inverse powers of two'' because each is the [[multiplicative inverse]] of a positive power of two. == Base of the binary numeral system == Because two is the base of the [[Binary number|binary numeral system]], powers of two are common in [[computer science]]. Written in binary, a power of two always has the form 100...000 or 0.00...001, just like a [[power of 10]] in the [[decimal]] system. == Computer science == Two to the power of {{math|''n''}}, written as {{math|2<sup>''n''</sup>}}, is the number of values in which the [[bit]]s in a [[Word (computer architecture)|binary word]] of length {{math|''n''}} can be set, where each bit is either of two values. A word, interpreted as representing an [[integer (computer science)|integer]] in a range starting at zero, referred to as an "unsigned integer", can represent values from 0 ({{math|000...000<sub>2</sub>}}) to {{math|2<sup>''n''</sup> β 1}} ({{math|111...111<sub>2</sub>}}) inclusively. An alternative representation, referred to as a [[signedness|signed]] integer, allows values that can be positive, negative and zero; see ''[[Signed number representations]]''. Either way, one less than a power of two is often the upper bound of an integer in binary computers. As a consequence, numbers of this form show up frequently in computer software. As an example, a [[video game]] running on an 8-bit system might limit the score or the number of items the player can hold to 255βthe result of using a [[byte]], which is [[octet (computing)|8 bits long]], to store the number, allowing the representation of 256 distinct values from {{math|0}} to {{math|1=2<sup>8</sup> β 1 = 255}}. For example, in the original ''[[The Legend of Zelda (video game)|Legend of Zelda]]'' the main character was limited to carrying 255 rupees (the currency of the game) at any given time, and the video game ''[[Pac-Man]]'' famously has a [[Glossary of video game terms#Kill screen|kill screen]] at level 256. Powers of two are often used to define units in which to quantify computer memory sizes. A "byte" now typically refers to eight bits (an [[octet (computing)|octet]]), resulting in the possibility of 256 values (2<sup>8</sup>). (The term ''byte'' once meant (and in some cases, still means) a [[bit#Multiple bits|collection of bits]] that was defined by the hardware context, typically of 5 to 32 bits, rather than only an 8-bit unit.) The prefix ''kilo'', in conjunction with ''byte'', has been used by computer scientists to mean {{val|1,024}} (2<sup>10</sup>). However, in general, the term ''kilo'' has been used in the [[International System of Units]] to mean {{val|1,000}} (10<sup>3</sup>). [[Binary prefixes]] have been standardized, such as ''kibi'' (Ki) meaning {{val|1,024}}. Nearly all [[processor register]]s have sizes that are a power of two bits, 8, 16, 32 or 64 bits being very common, with the last two being most common except for very small processors. Powers of two occur in a range of other places as well. For many [[disk drive]]s, at least one of the sector size, number of sectors per track, and number of tracks per surface is a power of two.{{citation needed|reason=The sector size is commonly a power of two; there are practical reasons why the others two have no specific reason to be related to a power of two.|date=December 2024}} The logical block size is almost always a power of two. Numbers that are closely related to powers of two occur in a number of computer hardware designs, such as with the number of pixels in the width and height of video screens, where the number of pixels in each direction is often the product of a power of two and a small number. For example, {{math|1=640 = 128 Γ 5}}, and {{math|1=480 = 32 Γ 15}}. == Mersenne and Fermat primes == A [[prime number]] that is one less than a power of two is called a [[Mersenne prime]]. For example, the prime number [[31 (number)|31]] is a Mersenne prime because it is 1 less than 32 (2<sup>5</sup>). Similarly, a prime number (like [[257 (number)|257]]) that is one more than a positive power of two is called a [[Fermat prime]]βthe exponent itself is a power of two. A [[fraction (mathematics)|fraction]] that has a power of two as its [[denominator]] is called a [[dyadic rational]]. The numbers that can be represented as sums of consecutive positive integers are called [[polite number]]s; they are exactly the numbers that are not powers of two. == Euclid's ''Elements'', Book IX == The [[geometric progression]] 1, 2, 4, 8, 16, 32, ... (or, in the [[binary numeral system]], 1, 10, 100, 1000, 10000, 100000, ... ) is important in [[number theory]]. Book IX, Proposition 36 of [[Euclid's Elements|''Elements'']] proves that if the sum of the first {{math|''n''}} terms of this progression is a prime number (and thus is a Mersenne prime as mentioned above), then this sum times the {{math|''n''}}th term is a [[perfect number]]. For example, the sum of the first 5 terms of the series {{math|1=1 + 2 + 4 + 8 + 16 = 31}}, which is a prime number. The sum 31 multiplied by 16 (the 5th term in the series) equals 496, which is a perfect number. Book IX, Proposition 35, proves that in a geometric series if the first term is subtracted from the second and last term in the sequence, then as the excess of the second is to the firstβso is the excess of the last to all those before it. (This is a restatement of our formula for geometric series from above.) Applying this to the geometric progression 31, 62, 124, 248, 496 (which results from 1, 2, 4, 8, 16 by multiplying all terms by 31), we see that 62 minus 31 is to 31 as 496 minus 31 is to the sum of 31, 62, 124, 248. Therefore, the numbers 1, 2, 4, 8, 16, 31, 62, 124 and 248 add up to 496 and further these are all the numbers that [[divisor|divide]] 496. For suppose that {{mvar|p}} divides 496 and it is not amongst these numbers. Assume {{math|''pq''}} is equal to {{math|16βΓβ31}}, or 31 is to {{mvar|q}} as {{mvar|p}} is to 16. Now {{math|''p''}} cannot divide 16 or it would be amongst the numbers 1, 2, 4, 8 or 16. Therefore, 31 cannot divide {{math|''q''}}. And since 31 does not divide {{math|''q''}} and {{math|''q''}} measures 496, the [[fundamental theorem of arithmetic]] implies that {{math|''q''}} must divide 16 and be among the numbers 1, 2, 4, 8 or 16. Let {{math|''q''}} be 4, then {{math|''p''}} must be 124, which is impossible since by hypothesis {{math|''p''}} is not amongst the numbers 1, 2, 4, 8, 16, 31, 62, 124 or 248. == First 64 powers of two == {{Anchor|List of powers of two}} {{OEIS|id=A000079}} {| class="mw-collapsible" style="text-align:center" |+ |- style="background:#c0c0c0;" | ! {{mvar|n}} ! style="width:150px;" | {{math|2<sup>''n''</sup>}} | rowspan="17" style="background:white; width:15px;" | ! {{mvar|n}} ! style="width:150px;" | {{math|2<sup>''n''</sup>}} | rowspan="17" style="background:white; width:15px;" | ! {{mvar|n}} ! style="width:150px;" | {{math|2<sup>''n''</sup>}} | rowspan="17" style="background:white; width:15px;" | ! {{mvar|n}} ! style="width:150px;" | {{math|2<sup>''n''</sup>}} |- style="background:#dfdfdf;" | |0|| align="right" |[[1 (number)|{{val|1}}]] |16|| align="right" |[[65536 (number)|{{val|65,536}}]] |32|| align="right" |[[4294967296 (number)|{{val|4,294,967,296}}]] |48|| align="right" | {{val|281,474,976,710,656}} |- style="background:white;" | |1 || align="right" |[[2 (number)|{{val|2}}]] |17 || align="right" | {{val|131,072}} |33 || align="right" | {{val|8,589,934,592}} |49 || align="right" | {{val|562,949,953,421,312}} |- style="background:#f7f7f7;" | |2 || align="right" |[[4 (number)|{{val|4}}]] |18 || align="right" | {{val|262,144}} |34 || align="right" | {{val|17,179,869,184}} |50 || align="right" | {{val|1,125,899,906,842,624}} |- style="background:white;" | |3 || align="right" |[[8 (number)|{{val|8}}]] |19 || align="right" | {{val|524,288}} |35 || align="right" | {{val|34,359,738,368}} |51 || align="right" | {{val|2,251,799,813,685,248}} |- style="background:#efefef;" | |4|| align="right" |[[16 (number)|{{val|16}}]] |20|| align="right" | {{val|1,048,576}} |36|| align="right" | {{val|68,719,476,736}} |52|| align="right" | {{val|4,503,599,627,370,496}} |- style="background:white;" | |5 || align="right" |[[32 (number)|{{val|32}}]] |21 || align="right" | {{val|2,097,152}} |37 || align="right" | {{val|137,438,953,472}} |53 || align="right" | {{val|9,007,199,254,740,992}} |- style="background:#f7f7f7;" | |6 || align="right" |[[64 (number)|{{val|64}}]] |22 || align="right" | {{val|4,194,304}} |38 || align="right" | {{val|274,877,906,944}} |54 || align="right" | {{val|18,014,398,509,481,984}} |- style="background:white;" | |7 || align="right" |[[128 (number)|{{val|128}}]] |23 || align="right" | {{val|8,388,608}} |39 || align="right" | {{val|549,755,813,888}} |55 || align="right" | {{val|36,028,797,018,963,968}} |- style="background:#e7e7e7;" | |8|| align="right" |[[256 (number)|{{val|256}}]] |24|| align="right" | {{val|16,777,216}} |40|| align="right" | {{val|1,099,511,627,776}} |56|| align="right" | {{val|72,057,594,037,927,936}} |- style="background:white;" | |9 || align="right" |[[512 (number)|{{val|512}}]] |25 || align="right" | {{val|33,554,432}} |41 || align="right" | {{val|2,199,023,255,552}} |57 || align="right" | {{val|144,115,188,075,855,872}} |- style="background:#f7f7f7;" | |10 || align="right" |[[1024 (number)|{{val|1,024}}]] |26 || align="right" | {{val|67,108,864}} |42 || align="right" | {{val|4,398,046,511,104}} |58 || align="right" | {{val|288,230,376,151,711,744}} |- style="background:white;" | |11 || align="right" |[[2048 (number)|{{val|2,048}}]] |27 || align="right" | {{val|134,217,728}} |43 || align="right" | {{val|8,796,093,022,208}} |59 || align="right" | {{val|576,460,752,303,423,488}} |- style="background:#efefef;" | |12 || align="right" |[[4096 (number)|{{val|4,096}}]] |28 || align="right" | {{val|268,435,456}} |44 || align="right" | {{val|17,592,186,044,416}} |60 || align="right" | {{val|1,152,921,504,606,846,976}} |- style="background:white;" | |13 || align="right" |[[8192 (number)|{{val|8,192}}]] |29 || align="right" | {{val|536,870,912}} |45 || align="right" | {{val|35,184,372,088,832}} |61 || align="right" | {{val|2,305,843,009,213,693,952}} |- style="background:#f7f7f7;" | |14 || align="right" |[[16384 (number)|{{val|16,384}}]] |30 || align="right" | {{val|1,073,741,824}} |46 || align="right" | {{val|70,368,744,177,664}} |62 || align="right" | {{val|4,611,686,018,427,387,904}} |- style="background:white;" | |15 || align="right" |[[32768 (number)|{{val|32,768}}]] |31 || align="right" | {{val|2,147,483,648}} |47 || align="right" | {{val|140,737,488,355,328}} |63 || align="right" | {{val|9,223,372,036,854,775,808}} |} === Last digits === Starting with 2 the last digit is periodic with period 4, with the cycle 2β4β8β6β, and starting with 4 the last two digits are periodic with period 20. These patterns are generally true of any power, with respect to any [[radix|base]]. The pattern continues where each pattern has starting point {{math|2<sup>''k''</sup>}}, and the period is the [[multiplicative order]] of 2 modulo {{math|5<sup>''k''</sup>}}, which is {{math|1=''φ''(5<sup>''k''</sup>) = 4 Γ 5<sup>''k''β1</sup>}} (see ''[[Multiplicative group of integers modulo n]]'').{{cn|date=June 2018}} == Powers of 1024 == {{OEIS|id=A140300}} The first few powers of 2<sup>10</sup> are slightly larger than those same powers of {{val|1000}} (10<sup>3</sup>). The first 11 powers of 2<sup>10</sup> values are listed below: {| class="mw-collapsible" |+ |-style="background:#dfdfdf;" | |2<sup>0</sup>||=||align="left"|1||= 1000<sup>0</sup>||align="right"|(0% deviation) |-style="background:white;" | |2<sup>10</sup>||=||align="left"|{{val|1024}}||β 1000<sup>1</sup>||align="right"|(2.4% deviation) |-style="background:#f7f7f7;" | |2<sup>20</sup>||=||align="left"|{{val|1048576}}||β 1000<sup>2</sup>||align="right"|(4.9% deviation) |-style="background:white;" | |2<sup>30</sup>||=||align="left"|{{val|1073741824}}||β 1000<sup>3</sup>||align="right"|(7.4% deviation) |-style="background:#efefef;" | |2<sup>40</sup>||=||align="left"|{{val|1099511627776}}||β 1000<sup>4</sup>||align="right"|(10.0% deviation) |-style="background:white;" | |2<sup>50</sup>||=||align="left"|{{val|1125899906842624}}||β 1000<sup>5</sup>||align="right"|(12.6% deviation) |-style="background:#f7f7f7;" | |2<sup>60</sup>||=||align="left"|{{val|1152921504606846976}}||β 1000<sup>6</sup>||align="right"|(15.3% deviation) |-style="background:white;" | |2<sup>70</sup>||=||align="left"|{{val|1180591620717411303424}}||β 1000<sup>7</sup>||align="right"|(18.1% deviation) |-style="background:#e7e7e7;" | |2<sup>80</sup>||=||align="left"|{{val|1208925819614629174706176}}||β 1000<sup>8</sup>||align="right"|(20.9% deviation) |-style="background:white;" | |2<sup>90</sup>||=||align="left"|{{val|1237940039285380274899124224}}||β 1000<sup>9</sup>||align="right"|(23.8% deviation) |-style="background:white;" |2<sup>100</sup>||=||align="left"|{{val|1267650600228229401496703205376}}||β 1000<sup>10</sup>||align="right"|(26.8% deviation) |} It takes approximately 17 powers of 1024 to reach 50% deviation and approximately 29 powers of 1024 to reach 100% deviation of the same powers of 1000.<ref><math>\log_{1024/1000} 1.5 \approx 17.1,</math> <math> \log_{1024/1000} 2 \approx 29.2.</math></ref> Also see ''[[Binary prefixes]]'' and ''[[IEEE 1541-2002]]''. == Powers of two whose exponents are powers of two == Because data (specifically integers) and the addresses of data are stored using the same hardware, and the data is stored in one or more octets ({{math|2<sup>3</sup>}}), [[double exponential function|double exponential]]s of two are common in computing. The first 21 of them are: {| class="mw-collapsible" style="text-align:right;" |+ |- style="background:#c0c0c0;" | ! {{mvar|n}} !! {{math|2<sup>''n''</sup>}} !! {{math|2<sup>2<sup>''n''</sup></sup>}} {{OEIS|id=A001146}} !! digits |-style="background:#dfdfdf;" | | 0 || 1 || [[2 (number)|2]] || 1 |-style="background:white;" | | 1 || 2 || [[4 (number)|4]] || 1 |-style="background:#f7f7f7;" | | 2 || 4 || [[16 (number)|16]] || 2 |-style="background:white;" | | 3 || 8 || [[256 (number)|256]] || 3 |-style="background:#efefef;" | | 4 || 16 || [[65536 (number)|{{val|65,536}}]] || 5 |-style="background:white;" | | 5 || 32 || {{val|4,294,967,296}} || {{val|10}} |-style="background:#f7f7f7;" | | 6 || 64 || {{replace|18,446,744,073,709,551,616|,|{{px2}}{{wbr}}}} || {{val|20}} |-style="background:white;" | | 7 || 128 || {{replace|340,282,366,920,938,463,463,374,607,431,768,211,456|,|{{px2}}{{wbr}}}} || {{val|39}} |-style="background:#e7e7e7;" | | 8 || 256 || {{replace|115,792,089,237,316,195,423,570,...,039,457,584,007,913,129,639,936|,|{{px2}}{{wbr}}}} || {{val|78}} |-style="background:white;" | | 9 || {{val|512}} || {{replace|13,407,807,929,942,597,099,574,0...,946,569,946,433,649,006,084,096|,|{{px2}}{{wbr}}}} || {{val|155}} |-style="background:#f7f7f7;" | | 10 || {{val|1,024}} || {{replace|179,769,313,486,231,590,772,930,...,304,835,356,329,624,224,137,216|,|{{px2}}{{wbr}}}} || {{val|309}} |-style="background:white;" | | 11 || {{val|2,048}} || {{replace|32,317,006,071,311,007,300,714,8...,193,555,853,611,059,596,230,656|,|{{px2}}{{wbr}}}} || {{val|617}} |-style="background:#efefef;" | | 12 || {{val|4,096}} || {{replace|1,044,388,881,413,152,506,691,75...,243,804,708,340,403,154,190,336|,|{{px2}}{{wbr}}}} || {{val|1,234}} |-style="background:white;" | | 13 || {{val|8,192}} || {{replace|1,090,748,135,619,415,929,462,98...,997,186,505,665,475,715,792,896|,|{{px2}}{{wbr}}}} || {{val|2,467}} |-style="background:#f7f7f7;" | | 14 || {{val|16,384}} || {{replace|1,189,731,495,357,231,765,085,75...,460,447,027,290,669,964,066,816|,|{{px2}}{{wbr}}}} || {{val|4,933}} |-style="background:white;" | | 15 || {{val|32,768}} || {{replace|1,415,461,031,044,954,789,001,55...,541,122,668,104,633,712,377,856|,|{{px2}}{{wbr}}}} || {{val|9,865}} |-style="background:#dfdfdf;" | | 16 || {{val|65,536}} |{{replace|2,003,529,930,406,846,464,979,07...,339,445,587,895,905,719,156,736|,|{{px2}}{{wbr}}}} || {{val|19,729}} |-style="background:white;" | | 17 || {{val|131,072}} |{{replace|4,014,132,182,036,063,039,166,06...,850,665,812,318,570,934,173,696|,|{{px2}}{{wbr}}}} || {{val|39,457}} |-style="background:#f7f7f7;" | | 18 || {{val|262,144}} |{{replace|16,113,257,174,857,604,736,195,7...,753,862,605,349,934,298,300,416|,|{{px2}}{{wbr}}}} || {{val|78,914}} |-style="background:white;" | | 19 || {{val|524,288}} |{{replace|259,637,056,783,100,077,612,659,...,369,814,364,528,226,185,773,056|,|{{px2}}{{wbr}}}} || {{val|157,827}} |-style="background:#efefef;" | | 20 || {{val|1,048,576}} |{{replace|67,411,401,254,990,734,022,690,6...,009,289,119,068,940,335,579,136|,|{{px2}}{{wbr}}}} || {{val|315,653}} |} Also see ''[[Fermat number]]'', ''[[Tetration]]'' and ''{{slink|Hyperoperation#Lower hyperoperations}}''. === Last digits for powers of two whose exponents are powers of two === All of these numbers over 4 end with the digit 6. Starting with 16 the last two digits are periodic with period 4, with the cycle 16β56β36β96β, and starting with 16 the last three digits are periodic with period 20. These patterns are generally true of any power, with respect to any [[radix|base]]. The pattern continues where each pattern has starting point {{math|2<sup>''k''</sup>}}, and the period is the [[multiplicative order]] of 2 modulo {{math|5<sup>''k''</sup>}}, which is {{math|1=''φ''(5<sup>''k''</sup>) = 4 × 5<sup>''k''−1</sup>}} (see ''[[Multiplicative group of integers modulo n]]'').{{cn|date=April 2023}} === Facts about powers of two whose exponents are powers of two === In a connection with [[nimber]]s, these numbers are often called ''[[Pierre de Fermat|Fermat]] 2-powers''. The numbers <math>2^{2^n}</math> form an [[irrationality sequence]]: for every sequence <math>x_i</math> of [[positive integer]]s, the [[series (mathematics)|series]] : <math>\sum_{i=0}^{\infty} \frac{1}{2^{2^i} x_i} = \frac{1}{2x_0}+\frac{1}{4x_1}+\frac{1}{16x_2}+\cdots</math> converges to an [[irrational number]]. Despite the rapid growth of this sequence, it is the slowest-growing irrationality sequence known.<ref>{{citation | last=Guy | first=Richard K. | author-link=Richard K. Guy | title=Unsolved problems in number theory | publisher=[[Springer-Verlag]] | edition=3rd | year=2004 | isbn=0-387-20860-7 | zbl=1058.11001 | contribution=E24 Irrationality sequences | page=346 | url=https://books.google.com/books?id=1AP2CEGxTkgC&pg=PA346 | url-status=live | archive-url=https://web.archive.org/web/20160428053544/https://books.google.com/books?id=1AP2CEGxTkgC&pg=PA346 | archive-date=2016-04-28 }}</ref> === Powers of two whose exponents are powers of two in computer science === Since it is common for computer [[data type]]s to have a ''size'' which is a power of two, these numbers count the number of representable ''values'' of that type. For example, a 32-bit word consisting of 4 bytes can represent {{math|2<sup>32</sup>}} distinct values, which can either be regarded as mere bit-patterns, or are more commonly interpreted as the unsigned numbers from 0 to {{math|2<sup>32</sup> β 1}}, or as the range of signed numbers between {{math|β2<sup>31</sup>}} and {{math|2<sup>31</sup> β 1}}. For more about representing signed numbers see ''[[Two's complement]]''. == Selected powers of two == ; {{anchor|4}}{{anchor|4}}2<sup>2</sup> = {{val|4}} : The number that is the [[square number|square]] of two. Also the first power of two [[tetration]] of two. ; {{anchor|256}}{{anchor|256}}2<sup>8</sup> = {{val|256}} : The number of values represented by the 8 [[bit]]s in a [[byte]], more specifically termed as an [[octet (computing)|octet]]. (The term [[byte]] is often defined as a [[bit#Multiple bits|collection of bits]] rather than the strict definition of an 8-bit quantity, as demonstrated by the term [[kilobyte]].) ; {{anchor|1024}}{{anchor|1,024}}2<sup>10</sup> = {{val|1,024}} : The binary approximation of the [[kilo-]], or {{val|1,000}} multiplier, which causes a change of prefix. For example: {{val|1,024|u=[[byte]]s}} = 1 [[Kilobyte#Binary_(1024_bytes)|kilobyte]]<ref name=kilobyte>{{cite book |last=Fortner |first=Brand |year=1995 |title=The Data Handbook |edition=2nd |place=New York |publisher=Springer; TELOS |doi=10.1007/978-1-4612-2538-6_3 |chapter=Byte Numbers |isbn=978-1-4612-7572-5 |at=Ch. 2, Β§ "Kilobytes and Megabytes", {{pgs|25}} |quote=Disk file sizes are often expressed in kilobytes and megabytes. A file may be listed as taking 32 kilobytes, or 32K bytes. This does not mean exactly 32,000 bytes. A kilobyte is defined as 2{{sup|10}}, or {{val|1024}}, bytes. So 32K bytes is actually equal to 32 Γ {{val|1024}}, or {{val|32,768}}, bytes. A megabyte is correspondingly defined as 2{{sup|20}}, or 1,048,576, bytes. Therefore, 32 megabytes (32M bytes) equals {{val|33,554,432}} bytes.}} {{pb}} {{cite book |year=2007 |chapter=Understanding Information |title=Forensic Computing |edition=2nd |publisher=Springer |place=London |doi=10.1007/978-1-84628-732-9_2 |last1=Sammes |first1=Tony |last2=Jenkinson |first2=Brian |pages=7β48 |isbn=978-1-84628-397-0 |quote=Today the byte is used as the basic measure of memory size, [...]. As computer memory and disk sizes have become very much larger, so the byte has become a comparatively small unit, and various powers of two are now used to qualify it: a kilobyte is 2{{sup|10}} = {{val|1024}} bytes; a megabyte is 2{{sup|20}} = {{val|1,048,576}} bytes; a gigabyte is 2{{sup|30}} = {{val|1,073,741,824}} bytes; a terabyte is 2{{sup|40}} = {{val|1,099,511,627,776}} bytes; and a petabyte is 2{{sup|50}} = {{val|1,125,899,906,842,624}} bytes. This sequence of powers of 2 units continues further with exabyte, zettabyte and yottabyte. Traditionally, computing scientists have always based their memory units on powers of 2 rather than on powers of 10, though this is a matter of some contention within the standards community. [Footnote: The issue is whether the prefixes kilo, mega, giga etc. should be raised to powers of two as traditionally implemented by the computing fraternity or to powers of ten as decreed by the General Conference of Weights and Measures for SI units. If they were to be changed to powers of ten, kilo would become 10{{sup|3}} = {{val|1000}} and mega would become {{val|e=6}} = {{val|1,000,000}}.] }}</ref> (or [[kibibyte]]). ; {{anchor|4096}}{{anchor|4,096}}2<sup>12</sup> = {{val|4,096}} : The hardware [[Page (computing)|page]] size of an [[Intel x86]]-compatible processor. ; {{anchor|32768}}{{anchor|32,768}}2<sup>15</sup> = {{val|32,768}} : The number of non-negative values for a ''signed'' 16-bit integer. ; {{anchor|65536}}{{anchor|65,536}}2<sup>16</sup> = {{val|65,536}} : {{main|65,536}} : The number of distinct values representable in a single [[Word (data type)|word]] on a [[16-bit computing|16-bit]] processor, such as the original [[x86]] processors.<ref name="iword">Though they vary in word size, all x86 processors use the term "word" to mean 16 bits; thus, a 32-bit x86 processor refers to its native wordsize as a dword</ref> : The maximum range of a [[short integer]] variable in the [[C Sharp (programming language)|C#]], [[Java (programming language)|Java]], and [[SQL]] programming languages. The maximum range of a '''Word''' or '''Smallint''' variable in the [[Pascal (programming language)|Pascal]] programming language. : The number of [[binary relation]]s on a 4-element set. ; {{anchor|1048576}}{{anchor|1,048,576}}2<sup>20</sup> = {{val|1,048,576}} : The binary approximation of the [[mega-]], or {{val|1,000,000}} multiplier, which causes a change of prefix. For example: {{val|1,048,576|u=[[byte]]s}} = 1 [[Megabyte#Base_2|megabyte]]{{r|kilobyte}} (or [[mebibyte]]). ; {{anchor|16777216}}{{anchor|16,777,216}}2<sup>24</sup> = {{val|16,777,216}} : : The number of unique [[color]]s that can be displayed in [[24-bit color|truecolor]], which is used by common [[computer monitor]]s. : This number is the result of using the three-channel [[RGB]] system, where colors are defined by three values (red, green and blue) independently ranging from 0 (<code>00</code>) to 255 (<code>FF</code>) inclusive. This gives 8 bits for each channel, or 24 bits in total; for example, pure black is <code>#000000</code>, pure white is <code>#FFFFFF</code>. The space of all possible colors, {{val|16,777,216}}, can be determined by 16<sup>6</sup> (6 digits with 16 possible values for each), 256<sup>3</sup> (3 channels with 256 possible values for each), or 2<sup>24</sup> (24 bits with 2 possible values for each). : The size of the largest unsigned integer or address in computers with [[24-bit computing|24-bit]] registers or data buses. ; {{anchor|1073741824}}{{anchor|1,073,741,824}}2<sup>30</sup> = {{val|1,073,741,824}} : The binary approximation of the [[giga-]], or {{val|1,000,000,000}} multiplier, which causes a change of prefix. For example, {{val|1,073,741,824|u=[[byte]]s}} = 1 [[Gigabyte#Base_2_(binary)|gigabyte]]{{r|kilobyte}} (or [[gibibyte]]). ; {{anchor|2147483648}}{{anchor|2,147,483,648}}2<sup>31</sup> = {{val|2,147,483,648}} {{see also|2,147,483,647}} : The number of non-negative values for a ''signed'' 32-bit integer. Since [[Unix time]] is measured in seconds since January 1, 1970, it will run out at {{val|2,147,483,647}} seconds or 03:14:07 UTC on Tuesday, 19 January 2038 on 32-bit computers running Unix, a problem known as the [[year 2038 problem]]. ; {{anchor|4294967296}}{{anchor|4,294,967,296}}2<sup>32</sup> = {{val|4,294,967,296}} : {{see also|4,294,967,295}} : The number of distinct values representable in a single [[Word (data type)|word]] on a [[32-bit computing|32-bit]] processor.<ref>{{cite web|url=https://www.vaughns-1-pagers.com/computer/powers-of-2.htm|archive-url=https://web.archive.org/web/20150812072147/http://www.vaughns-1-pagers.com/computer/powers-of-2.htm|url-status=dead|title=Powers of 2 Table β Vaughn's Summaries|archive-date=August 12, 2015|website=www.vaughns-1-pagers.com}}</ref> Or, the number of values representable in a [[Word (data type)#Size families|doubleword]] on a [[16-bit computing|16-bit]] processor, such as the original [[x86]] processors.<ref name="iword"/> : The range of an <code>[[integer (computer science)|int]]</code> variable in the [[Java (programming language)|Java]], [[C Sharp (programming language)|C#]], and [[SQL]] programming languages. : The range of a <code>Cardinal</code> or <code>Integer</code> variable in the [[Pascal (programming language)|Pascal]] programming language. : The minimum range of a [[long integer]] variable in the [[C (programming language)|C]] and [[C++]] programming languages. : The total number of [[IP address]]es under [[IPv4]]. Although this is a seemingly large number, the number of available 32-bit [[IPv4 address exhaustion|IPv4 addresses has been exhausted]] (but not for [[IPv6]] addresses). : The number of [[binary operation]]s with domain equal to any 4-element set, such as [[Galois field|GF]](4). ; {{anchor|1099511627776}}{{anchor|1,099,511,627,776}}2<sup>40</sup> = {{val|1,099,511,627,776}} : The binary approximation of the [[tera-]], or {{val|1,000,000,000,000}} multiplier, which causes a change of prefix. For example, {{val|1,099,511,627,776}} [[byte]]s = 1 [[terabyte]]{{r|kilobyte}} or tebibyte. ; {{anchor|1125899906842624}}{{anchor|1,125,899,906,842,624}}2<sup>50</sup> = {{val|1,125,899,906,842,624}} : The binary approximation of the [[peta-]], or {{val|1,000,000,000,000,000}} multiplier. {{val|1,125,899,906,842,624}} [[byte]]s = 1 [[petabyte]]{{r|kilobyte}} or pebibyte. ; {{anchor|9007199254740992}}{{anchor|9,007,199,254,740,992}}2<sup>53</sup> = {{val|9,007,199,254,740,992}} : The number until which all integer values can exactly be represented in IEEE [[double precision floating-point format]]. Also the first power of 2 to start with the digit 9 in decimal. ; {{anchor|72057594037927936}}{{anchor|72,057,594,037,927,936}}2<sup>56</sup> = {{val|72,057,594,037,927,936}} : The number of different possible keys in the obsolete 56 bit [[Data Encryption Standard|DES]] symmetric cipher. ; {{anchor|1152921504606846976}}{{anchor|1,152,921,504,606,846,976}}2<sup>60</sup> = {{val|1,152,921,504,606,846,976}} : The binary approximation of the [[exa-]], or {{val|1,000,000,000,000,000,000}} multiplier. {{val|1,152,921,504,606,846,976}} [[byte]]s = 1 [[exabyte]]{{r|kilobyte}} or exbibyte. ; {{anchor|9223372036854775808}}{{anchor|9,223,372,036,854,775,808}}{{anchor|2^63}}2<sup>63</sup> = {{val|9,223,372,036,854,775,808}} : : The number of non-negative values for a signed 64-bit integer. : {{anchor|2^63-1}}2<sup>63</sup> β 1, a common maximum value (equivalently the number of positive values) for a signed 64-bit integer in programming languages. ; {{anchor|18446744073709551616}}{{anchor|18,446,744,073,709,551,616}}{{anchor|2^64}}2<sup>64</sup> = {{val|18,446,744,073,709,551,616}} : : The number of distinct values representable in a single [[Word (data type)|word]] on a [[64-bit computing|64-bit]] processor. Or, the number of values representable in a [[Word (data type)#Size families|doubleword]] on a [[32-bit computing|32-bit]] processor. Or, the number of values representable in a [[Word (data type)#Size families|quadword]] on a [[16-bit computing|16-bit]] processor, such as the original [[x86]] processors.<ref name="iword"/> : The range of a [[long integer|long]] variable in the [[Java (programming language)|Java]] and [[C Sharp (programming language)|C#]] programming languages. : The range of a '''Int64''' or '''QWord''' variable in the [[Pascal (programming language)|Pascal]] programming language. : The total number of [[IPv6 address]]es generally given to a single LAN or subnet. : {{anchor|2^64-1}}2<sup>64</sup> β 1, the number of grains of rice on a chessboard, [[Wheat and chessboard problem|according to the old story]], where the first square contains one grain of rice and each succeeding square twice as many as the previous square. For this reason the number is sometimes known as the "chess number". : 2<sup>64</sup> β 1 is also the number of moves required to complete the legendary 64-disk version of the [[Tower of Hanoi#Origins|Tower of Hanoi]]. ; {{anchor|295147905179352825856}}{{anchor|295,147,905,179,352,825,856}}2<sup>68</sup> = {{val|295,147,905,179,352,825,856}} : The first power of 2 to contain all decimal digits. {{OEIS|id=A137214}} ; {{anchor|1180591620717411303424}}{{anchor|1,180,591,620,717,411,303,424}}2<sup>70</sup> = {{val|1,180,591,620,717,411,303,424}} : The binary approximation of the [[zetta-]], or {{val|1,000,000,000,000,000,000,000}} multiplier. {{val|1,180,591,620,717,411,303,424}} [[byte]]s = 1 [[zettabyte]]{{r|kilobyte}} (or [[zebibyte]]). ; {{anchor|1208925819614629174706176}}{{anchor|1,208,925,819,614,629,174,706,176}}2<sup>80</sup> = {{val|1,208,925,819,614,629,174,706,176}} : The binary approximation of the [[yotta-]], or {{val|1,000,000,000,000,000,000,000,000}} multiplier. {{val|1,208,925,819,614,629,174,706,176}} [[byte]]s = 1 [[yottabyte]]{{r|kilobyte}} (or [[yobibyte]]). ; {{anchor|77371252455336267181195264}}{{anchor|77,371,252,455,336,267,181,195,264}}2<sup>86</sup> = {{val|77,371,252,455,336,267,181,195,264}} : 2<sup>86</sup> is [[conjecture]]d to be the largest power of two not containing a zero in decimal.<ref>Weisstein, Eric W. "Zero". From MathWorld. {{cite web |url=http://mathworld.wolfram.com/Zero.html |title=Zero |access-date=2013-05-29 |url-status=live |archive-url=https://web.archive.org/web/20130601190920/http://mathworld.wolfram.com/Zero.html |archive-date=2013-06-01 }}</ref> ; {{anchor|79228162514264337593543950336}}{{anchor|79,228,162,514,264,337,593,543,950,336}}2<sup>96</sup> = {{val|79,228,162,514,264,337,593,543,950,336}} : The total number of [[IPv6 address]]es generally given to a [[local Internet registry]]. In [[Classless Inter-Domain Routing|CIDR]] notation, ISPs are given a {{IPaddr||32}}, which means that {{nowrap|1=128 β 32 = 96}} bits are available for addresses (as opposed to network designation). Thus, 2<sup>96</sup> addresses. ; 2<sup>108</sup> = {{replace|324,518,553,658,426,726,783,156,020,576,256|,|{{px2}}}} : The largest known power of 2 not containing a 9 in decimal. {{OEIS|id=A035064}} ; 2<sup>126</sup> = {{replace|85,070,591,730,234,615,865,843,651,857,942,052,864|,|{{px2}}}} : The largest known power of 2 not containing a pair of consecutive equal digits. {{OEIS|id=A050723}} ; {{anchor|340282366920938463463374607431768211456}}{{anchor|340,282,366,920,938,463,463,374,607,431,768,211,456}}2<sup>128</sup> = {{replace|340,282,366,920,938,463,463,374,607,431,768,211,456|,|{{px2}}}} : The total number of [[IPv6 address|IP addresses]] available under [[IPv6]]. Also the number of distinct [[Universally unique identifier|universally unique identifiers (UUIDs)]]. ; 2<sup>168</sup> = {{replace|374,144,419,156,711,147,060,143,317,175,368,453,031,918,731,001,856|,|{{px2}}}} : The largest known power of 2 not containing all decimal digits (the digit 2 is missing in this case). {{OEIS|id=A137214}} ; 2<sup>192</sup> = {{replace|6,277,101,735,386,680,763,835,789,423,207,666,416,102,355,444,464,034,512,896|,|{{px2}}}} : The total number of different possible keys in the [[Advanced Encryption Standard|AES]] 192-bit [[key space (cryptography)|key space]] (symmetric cipher). ; {{anchor|862718293348820473429344482784628181556388621521298319395315527974912}}{{anchor|862,718,293,348,820,473,429,344,482,784,628,181,556,388,621,521,298,319,395,315,527,974,912}}2<sup>229</sup> = {{replace|862,718,293,348,820,473,429,344,482,784,628,181,556,388,621,521,298,319,395,315,527,974,912|,|{{px2}}}} : 2<sup>229</sup> is the largest known power of two containing the least number of zeros relative to its power. It is conjectured by Metin Sariyar that every digit 0 to 9 is inclined to appear an equal number of times in the decimal expansion of power of two as the power increases. {{OEIS|id=A330024}} ; 2<sup>256</sup> = {{replace|115,792,089,237,316,195,423,570,985,008,687,907,853,269,984,665,640,564,039,457,584,007,913,129,639,936|,|{{px2}}}} : The total number of different possible keys in the [[Advanced Encryption Standard|AES]] 256-bit [[key space (cryptography)|key space]] (symmetric cipher). ; 2<sup>{{val|1,024}}</sup> = {{replace|179,769,313,486,231,590,772,930,...,304,835,356,329,624,224,137,216|,|{{px2}}}} (309 digits) : The maximum number that can fit in a 64-bit IEEE [[double-precision floating-point format]] (hence the maximum number that can be represented by many programs, for example [[Microsoft Excel]]). ; 2<sup>{{val|16,384}}</sup> = {{replace|1,189,731,495,357,231,765,085,75...,460,447,027,290,669,964,066,816|,|{{px2}}}} ({{val|4,933}} digits) : The maximum number that can fit in a 128-bit IEEE [[quadruple-precision floating-point format]] ; 2<sup>{{val|262,144}}</sup> = {{replace|16,113,257,174,857,604,736,195,7...,753,862,605,349,934,298,300,416|,|{{px2}}}} ({{val|78,914}} digits) : The maximum number that can fit in a 256-bit IEEE [[octuple-precision floating-point format]] ; 2<sup>{{val|136,279,841}}</sup> = {{replace|8,816,943,275,038,332,655,539,39...,665,555,076,706,219,486,871,552|,|{{px2}}}} ({{val|41,024,320}} digits) : One more than the [[largest known prime number]] {{As of|October 2024|lc=on}}.<ref>{{cite web|url=https://www.mersenne.org/primes/?press=M136279841|title=Mersenne Prime Discovery β 2<sup>136279841</sup>β1 is Prime!|website=www.mersenne.org}}</ref> == Powers of two in music theory == In [[musical notation]], all unmodified [[note value]]s have a duration equal to a [[whole note]] divided by a power of two; for example a [[half note]] (1/2), a [[quarter note]] (1/4), an [[eighth note]] (1/8) and a [[sixteenth note]] (1/16). [[Dotted note|Dotted]] or otherwise modified notes have other durations. In [[time signature]]s the lower numeral, the ''beat unit'', which can be seen as the [[denominator]] of a fraction, is almost always a power of two. If the ratio of [[frequency|frequencies]] of two pitches is a power of two, then the [[interval (music)|interval]] between those pitches is full [[octave]]s. In this case, the corresponding notes have the same name. The [[mathematical coincidence]] <math>2^{7} \approx (\tfrac{3}{2})^{12}</math>, from <math>\frac{\log3}{\log2} = 1.5849\ldots \approx \frac{19}{12}</math>, closely relates the interval of 7 [[semitone]]s in [[equal temperament]] to a [[perfect fifth]] of [[just intonation]]: <math>2^{7/12}\approx 3/2</math>, correct to about 0.1%. The just fifth is the basis of [[Pythagorean tuning]]; the difference between [[circle of fifths|twelve just fifths]] and seven octaves is the [[Pythagorean comma]].<ref name="schroeder"> {{cite book | title = Number theory in science and communication | author = Manfred Robert Schroeder | publisher = Springer | edition = 2nd | year = 2008 | isbn = 978-3-540-85297-1 | pages = 26β28 | url = https://books.google.com/books?id=2KV2rfP0yWEC&q=coincidence+circle-of-fifths+1024+7-octaves+%22one+part+in+a+thousand%22&pg=PA27 }}</ref> == Other properties == [[File:Binomial_expansion_visualisation.svg|thumb|300px|As each increase in dimension doubles the number of shapes, the sum of coefficients on each row of [[Pascal's triangle]] is a power of two]] [[File:sum_of_powers_of_two_including_fractions.svg|thumb|300px|The sum of powers of two from zero to a given power, inclusive, is 1 less than the next power of two, whereas the sum of powers of two from negative infinity to a given power, inclusive, equals the next power of two.]] The sum of all {{mvar|n}}-choose [[binomial coefficient]]s is equal to {{math|2<sup>''n''</sup>}}. Consider the set of all {{mvar|n}}-digit binary integers. Its [[cardinality]] is {{math|2<sup>''n''</sup>}}. It is also the sums of the cardinalities of certain subsets: the subset of integers with no 1s (consisting of a single number, written as {{mvar|n}} 0s), the subset with a single 1, the subset with two 1s, and so on up to the subset with {{mvar|n}} 1s (consisting of the number written as {{mvar|n}} 1s). Each of these is in turn equal to the binomial coefficient indexed by {{mvar|n}} and the number of 1s being considered (for example, there are 10-choose-3 binary numbers with ten digits that include exactly three 1s). Currently, powers of two are the only known [[almost perfect number]]s. The [[cardinality]] of the [[power set]] of a set {{math|''a''}} is always {{math|2<sup>{{abs|''a''}}</sup>}}, where {{math|{{abs|''a''}}}} is the cardinality of {{math|''a''}}. The number of [[vertex (geometry)|vertices]] of an {{mvar|n}}-dimensional [[hypercube]] is {{math|2<sup>''n''</sup>}}. Similarly, the number of {{math|(''n'' β 1)}}-faces of an {{mvar|n}}-dimensional [[cross-polytope]] is also {{math|2<sup>''n''</sup>}} and the formula for the number of {{mvar|x}}-faces an {{mvar|n}}-dimensional cross-polytope has is <math>2^x \tbinom{n}{x}.</math> The sum of the first <math>n</math> powers of two (starting from <math>1 = 2^{0}</math>) is given by : <math> \sum_{k=0}^{n-1} 2^k = 2^0 + 2^1 + 2^2 + \cdots + 2^{n-1} = 2^{n}-1 </math> for <math>n</math> being any positive integer. Thus, the sum of the powers : <math>1 + 2^1 + 2^2 + \cdots + 2^{63}</math> can be computed simply by evaluating: <math>2^{64}-1</math> (which is the "chess number"). The [[1/2 + 1/4 + 1/8 + 1/16 + β―|sum of the reciprocals of the powers of two]] is [[1 (number)|1]]. The [[1/4 + 1/16 + 1/64 + 1/256 + β―|sum of the reciprocals of the squared powers of two]] (powers of four) is 1/3. The smallest natural power of two whose [[Decimal|decimal representation]] begins with 7 is<ref name="o_potegach_dwojki"> {{cite web |url = http://www.deltami.edu.pl/temat/matematyka/teoria_liczb/2011/03/07/O_potegach_dwojki/ |title = O potΔgach dwΓ³jki (About powers of two) |author = PaweΕ Strzelecki |language = pl |year = 1994 |publisher = Delta |url-status = live |archive-url = https://web.archive.org/web/20160509191813/http://www.deltami.edu.pl/temat/matematyka/teoria_liczb/2011/03/07/O_potegach_dwojki/ |archive-date = 2016-05-09 }}</ref> : <math>2^{46} = 70\ 368\ 744\ 177\ 664.</math> Every power of 2 (excluding 1) can be written as the [[Jacobi's four-square theorem|sum of four square numbers in 24 ways]]. The powers of 2 are the natural numbers greater than 1 that can be written as the sum of four square numbers in the fewest ways. As a real [[polynomial]], ''a''<sup>''n''</sup> + ''b''<sup>''n''</sup> is [[irreducible polynomial|irreducible]], if and only if ''n'' is a power of two. (If ''n'' is odd, then ''a''<sup>''n''</sup> + ''b''<sup>''n''</sup> is divisible by ''a''+''b'', and if ''n'' is even but not a power of 2, then ''n'' can be written as ''n'' = ''mp'', where ''m'' is odd, and thus <math>a^n + b^n = (a^p)^m + (b^p)^m</math>, which is divisible by ''a''<sup>''p''</sup> + ''b''<sup>''p''</sup>.) But in the domain of [[complex numbers]], the polynomial <math>a^{2n} + b^{2n}</math> (where ''n'' β₯ 1) can always be factorized as <math>a^{2n} + b^{2n} = (a^n + b^ni) \cdot (a^n - b^ni)</math>, even if ''n'' is a power of two. The only known powers of 2 with all digits even are 2<sup>1</sup> = 2, 2<sup>2</sup> = 4, 2<sup>3</sup> = 8, 2<sup>6</sup> = 64 and 2<sup>11</sup> = {{val|2048}}.<ref>{{cite OEIS|A068994|Powers of 2 with all even digits}}</ref> The first 3 powers of 2 with all but last digit odd is 2<sup>4</sup> = 16, 2<sup>5</sup> = 32 and 2<sup>9</sup> = 512. The next such power of 2 of form 2<sup>''n''</sup> should have ''n'' of at least 6 digits. The only powers of 2 with all digits distinct are 2<sup>0</sup> = 1 to 2<sup>15</sup> = {{val|32768}}, 2<sup>20</sup> = {{val|1048576}} and 2<sup>29</sup> = {{val|536870912}}. == Negative powers of two == [[Huffman code]]s deliver optimal [[lossless data compression]] when probabilities of the source symbols are all negative powers of two.<ref>[https://www.sciencedirect.com/topics/mathematics/huffman-code Huffman coding], from: '' Fundamental Data Compression'', 2006</ref> == See also == * [[FermiβDirac prime]] * [[Gould's sequence]] * [[Binary logarithm]] * [[Power of three]] * [[Power of 10]] == References == {{reflist}} {{-}} {{Series (mathematics)}} {{Classes of natural numbers}} {{Large numbers}} {{DEFAULTSORT:Power Of Two}} [[Category:Binary arithmetic]] [[Category:Integer sequences]] [[Category:Integers]] [[Category:2 (number)]]
Edit summary
(Briefly describe your changes)
By publishing changes, you agree to the
Terms of Use
, and you irrevocably agree to release your contribution under the
CC BY-SA 4.0 License
and the
GFDL
. You agree that a hyperlink or URL is sufficient attribution under the Creative Commons license.
Cancel
Editing help
(opens in new window)
Pages transcluded onto the current version of this page
(
help
)
:
Template:-
(
edit
)
Template:Anchor
(
edit
)
Template:As of
(
edit
)
Template:Citation
(
edit
)
Template:Citation needed
(
edit
)
Template:Cite OEIS
(
edit
)
Template:Cite book
(
edit
)
Template:Cite web
(
edit
)
Template:Classes of natural numbers
(
edit
)
Template:Clear
(
edit
)
Template:Cn
(
edit
)
Template:IPaddr
(
edit
)
Template:Large numbers
(
edit
)
Template:Main
(
edit
)
Template:Math
(
edit
)
Template:Mvar
(
edit
)
Template:Nowrap
(
edit
)
Template:OEIS
(
edit
)
Template:Other uses
(
edit
)
Template:Pb
(
edit
)
Template:R
(
edit
)
Template:Reflist
(
edit
)
Template:Replace
(
edit
)
Template:See also
(
edit
)
Template:Series (mathematics)
(
edit
)
Template:Sfrac
(
edit
)
Template:Short description
(
edit
)
Template:Slink
(
edit
)
Template:Val
(
edit
)