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!)
A108501 Number of factorizations of 4*n into even numbers. 4
2, 3, 2, 5, 2, 4, 2, 7, 3, 4, 2, 7, 2, 4, 3, 11, 2, 6, 2, 7, 3, 4, 2, 12, 3, 4, 3, 7, 2, 7, 2, 15, 3, 4, 3, 12, 2, 4, 3, 12, 2, 7, 2, 7, 4, 4, 2, 19, 3, 6, 3, 7, 2, 8, 3, 12, 3, 4, 2, 14, 2, 4, 4, 22, 3, 7, 2, 7, 3, 7, 2, 21, 2, 4, 4, 7, 3, 7, 2, 19, 4, 4, 2, 14, 3, 4, 3, 12, 2, 11, 3, 7, 3, 4, 3, 30, 2 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
COMMENTS
a(n) = 2 iff n is 1 or an odd prime (A006005); in this case, the two factorizations are 4n = 2 * 2n. - Bernard Schott, Nov 30 2020
LINKS
FORMULA
a(2^k) = A000041(k+2). - Bernard Schott, Dec 01 2020
EXAMPLE
a(6)=4 because 6*4=24 can be factored as 24=12*2=6*4=6*2*2.
MAPLE
with(numtheory):
b:= proc(n, i) option remember; `if`(n<=i, 1, 0)+
add(`if`(d<=i and irem(d, 2)=0 and irem(n/d, 2)=0,
b(n/d, min(d, i)), 0), d=divisors(n) minus {1, n})
end:
a:= n-> b(4*n$2):
seq(a(n), n=1..100); # Alois P. Heinz, Feb 17 2015
MATHEMATICA
b[n_, i_] := b[n, i] = If[n <= i, 1, 0] + Sum[If[d <= i && Mod[d, 2]==0 && Mod[n/d, 2]==0, b[n/d, Min[d, i]], 0], {d, Divisors[n][[2 ;; -2]]}];
a[n_] := b[4n, 4n];
Array[a, 100] (* Jean-François Alcover, Nov 05 2020, after Alois P. Heinz *)
CROSSREFS
Sequence in context: A073751 A319431 A258581 * A166226 A263978 A326810
KEYWORD
nonn
AUTHOR
Christian G. Bower, Jun 06 2005
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 24 00:30 EDT 2024. Contains 371917 sequences. (Running on oeis4.)