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!)
A045727 Fibonacci numbers having initial digit '3'. 1
3, 34, 377, 317811, 3524578, 39088169, 32951280099, 365435296162, 308061521170129, 3416454622906707, 37889062373143906, 31940434634990099905, 354224848179261915075, 3928413764606871165730 (list; graph; refs; listen; history; text; internal format)
OFFSET
1,1
LINKS
MAPLE
res:= NULL:
a:= 0: b:= 1:
for i from 1 to 100 do
temp:= a+b;
a:= b;
b:= temp;
if floor(b/10^ilog10(b)) = 3 then
res:= res, b;
fi;
od:
res; # Robert Israel, Dec 25 2016
MATHEMATICA
Select[Fibonacci[Range[200]], First[IntegerDigits[#]]==3&] (* Harvey P. Dale, Mar 05 2018 *)
CROSSREFS
Sequence in context: A231593 A367509 A134491 * A105713 A367840 A337388
KEYWORD
nonn,base
AUTHOR
EXTENSIONS
a(11) corrected by Robert Israel, Dec 25 2016
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 25 06:42 EDT 2024. Contains 371964 sequences. (Running on oeis4.)