login
This site is supported by donations to The OEIS Foundation.
Logo

Hints
(Greetings from The On-Line Encyclopedia of Integer Sequences!)
A064236 Number of decimal digits in A001042. 0
1, 1, 1, 1, 2, 3, 5, 10, 19, 38, 76, 152, 303, 605, 1210, 2420, 4839, 9678, 19355, 38709, 77417, 154834, 309667, 619333, 1238665, 2477330, 4954660, 9909319, 19818638, 39637275, 79274549 (list; graph; refs; listen; history; internal format)
OFFSET

0,5

MATHEMATICA

a[ 1 ] = 1; a[ 2 ] = 2; a[ n_ ] := a[ n ] = a[ n - 1 ]^2 - a[ n - 2 ]^2; Table[ Floor[ N[ Log[ 10, a[ n ] ], 36 ] ] + 1, {n, 1, 31} ]

PROG

(PARI) a(n) = if(n<2, n+1, a(n-1)^2-a(n-2)^2); l(n) = ln=0; while(n, n=floor(n/10); ln++); return(ln); for(n=0, 21, print(l(a(n))))

CROSSREFS

Sequence in context: A166874 A046630 A177874 * A007569 A054317 A065840

Adjacent sequences:  A064233 A064234 A064235 * A064237 A064238 A064239

KEYWORD

base,nonn

AUTHOR

Jason Earls (zevi_35711(AT)yahoo.com), Sep 22 2001

EXTENSIONS

More terms from Robert G. Wilson v (rgwv(AT)rgwv.com), Sep 24 2001

Lookup | Welcome | Wiki | Register | Music | Plot 2 | Demos | Index | Browse | More | WebCam
Contribute new seq. or comment | Format | Transforms | Puzzles | Hot | Classics
Recent Additions | More pages | Superseeker | Maintained by The OEIS Foundation Inc.

Content is available under The OEIS End-User License Agreement .

Last modified February 15 13:18 EST 2012. Contains 205796 sequences.