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!)
A069895 2^a(n) divides (2n)^(2n): exponent of 2 in (2n)^(2n). 7
2, 8, 6, 24, 10, 24, 14, 64, 18, 40, 22, 72, 26, 56, 30, 160, 34, 72, 38, 120, 42, 88, 46, 192, 50, 104, 54, 168, 58, 120, 62, 384, 66, 136, 70, 216, 74, 152, 78, 320, 82, 168, 86, 264, 90, 184, 94, 480, 98, 200, 102, 312, 106, 216, 110, 448, 114, 232, 118, 360, 122 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
FORMULA
a(n) = 2*n*A001511(n).
a(n) = A007814(A085534(n)). [corrected by Kevin Ryde, Oct 15 2021]
G.f.: Sum_{k>=0} 2^(k+1)*x^2^k/(1-x^2^k)^2. - Ralf Stephan, Jun 07 2003
a(n) = 2 * A091512(n). - Alois P. Heinz, Oct 14 2021
MAPLE
a:= 2*n*padic[ordp](2*n, 2):
seq(a(n), n=1..61); # Alois P. Heinz, Oct 14 2021
MATHEMATICA
Table[ Part[ Flatten[ FactorInteger[n^n]], 2], {n, 2, 124, 2}]
PROG
(PARI) a(n) = n<<=1; n*valuation(n, 2); \\ Kevin Ryde, Oct 14 2021
(Julia)
function A069895List(length)
a = zeros(Int, length)
for n in 1:length a[n] = 2 * (isodd(n) ? n : n + a[div(n, 2)]) end
a end
A069895List(61) |> println # Peter Luschny, Oct 16 2021
(Python)
def A069895(n): return n*(n&-n).bit_length()<<1 # Chai Wah Wu, Jul 11 2022
CROSSREFS
Cf. A001511, A007814, A085534, A091512, A249153 (partial sums).
Sequence in context: A100871 A111860 A278160 * A370925 A085590 A079538
KEYWORD
easy,nonn
AUTHOR
Labos Elemer, Apr 10 2002
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 23 16:40 EDT 2024. Contains 371916 sequences. (Running on oeis4.)