login

Year-end appeal: Please make a donation to the OEIS Foundation to support ongoing development and maintenance of the OEIS. We are now in our 61st year, we have over 378,000 sequences, and we’ve reached 11,000 citations (which often say “discovered thanks to the OEIS”).

A172155
a(n) = Omega(6*n-1)*Omega(6*n+1).
1
1, 1, 1, 2, 1, 2, 1, 2, 2, 1, 2, 1, 2, 2, 2, 2, 1, 1, 2, 4, 3, 2, 1, 4, 1, 2, 2, 2, 3, 1, 4, 1, 1, 4, 2, 4, 2, 1, 2, 1, 6, 2, 2, 2, 1, 3, 1, 4, 2, 4, 2, 1, 2, 6, 2, 2, 6, 1, 2, 2, 2, 2, 2, 3, 2, 2, 2, 2, 4, 1, 6, 1, 2, 2, 2, 3, 1, 2, 6, 2, 2, 2, 2, 2, 2, 4, 1, 4, 4, 3, 2, 4, 2, 2, 1, 3, 4, 2, 3, 1, 3, 2, 1, 8, 2
OFFSET
1,4
EXAMPLE
For n=1, Omega(6*n-1)*Omega(6*n+1)=Omega(5)*Omega(7)=1, so a(1)=1.
MAPLE
A172155 := proc(n) numtheory[bigomega](6*n-1)*numtheory[bigomega](6*n+1) ; end proc: seq(A172155(n), n=1..100) ; # R. J. Mathar, Jan 30 2010
MATHEMATICA
Table[Times@@PrimeOmega[6*n+{1, -1}], {n, 120}] (* Harvey P. Dale, Jul 16 2020 *)
CROSSREFS
Cf. A145193.
Sequence in context: A080763 A245920 A165413 * A080573 A186440 A006340
KEYWORD
nonn
AUTHOR
EXTENSIONS
Corrected by R. J. Mathar, Jan 30 2010
STATUS
approved