OFFSET
1,2
COMMENTS
The sequence continues: ??137??, 24, 8, 24, ??145??, 15, ??149??, 13, 8, 24, 3, 25, 6, 11, 3, 31...
LINKS
Dario Alejandro Alpern, Factorization using the Elliptic Curve Method.
FORMULA
a(n) = number of prime factors (with repetition) of integer part of (10^(2n) * 34 / 3333).
EXAMPLE
a(6)=8 because the factorization of 10201020102 = 2 * 3 * 3 * 7 * 13 * 17 * 37 * 9901.
MATHEMATICA
a[n_] := Plus @@ Transpose[ FactorInteger[ IntegerPart[10^(2n)*34 / 3333]]][[2]];
Table[ a[n], {n, 2, 30} ]
CROSSREFS
KEYWORD
nonn,less
AUTHOR
Robert G. Wilson v & Jonathan Vos Post, Feb 17 2005
STATUS
approved