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”).

A130892
a(n) = n if n is not an odd prime number. Otherwise, a(n) = k*ceiling(n/10), where k is the smallest integer such that n < 10^k.
0
0, 1, 2, 1, 4, 1, 6, 1, 8, 9, 10, 4, 12, 4, 14, 15, 16, 4, 18, 4, 20, 21, 22, 6, 24, 25, 26, 27, 28, 6, 30, 8, 32, 33, 34, 35, 36, 8, 38, 39, 40, 10, 42, 10, 44, 45, 46, 10, 48, 49, 50, 51, 52, 12, 54, 55, 56, 57, 58, 12, 60, 14, 62, 63, 64, 65, 66, 14, 68
OFFSET
1,3
MATHEMATICA
Join[{0, 1, 2}, Table[If[PrimeQ[n], IntegerLength[n]Ceiling[n/10], n], {n, 3, 99}]] (* Harvey P. Dale, Sep 14 2013 *)
CROSSREFS
KEYWORD
nonn
AUTHOR
Mohammad K. Azarian, Aug 21 2007
EXTENSIONS
Offset corrected by Mohammad K. Azarian, Nov 19 2008
STATUS
approved