Forums

Fibonacci sequence

Quick find code: 55-56-974-60029865

Statistics
Jul Member 2011

Statistics

Posts: 4,461 Adamant Posts by user Forum Profile RuneMetrics Profile
45,624,969,256,769,882,625,644,229,676,772,632,057,353,264,935,332,782,291
+
73,822,750,993,122,698,578,207,436,143,903,804,565,580,923,764,844,306,069
=
119,447,720,249,892,581,203,851,665,820,676,436,622,934,188,700,177,088,360
__

119,447,720,249,892,581,203,851,665,820,676,436,622,934,188,700,177,088,360
+
73,822,750,993,122,698,578,207,436,143,903,804,565,580,923,764,844,306,069
=
193,270,471,243,015,279,782,059,101,964,580,241,188,515,112,465,021,394,429
__

193,270,471,243,015,279,782,059,101,964,580,241,188,515,112,465,021,394,429
+
119,447,720,249,892,581,203,851,665,820,676,436,622,934,188,700,177,088,360
=
312,718,191,392,907,860,985,910,767,785,256,677,811,449,301,165,198,482,789

06-Jul-2011 21:31:38 - Last edited on 06-Jul-2011 21:36:32 by Statistics

Tristo
Nov Member 2014

Tristo

Posts: 1,323 Mithril Posts by user Forum Profile RuneMetrics Profile
193,270,471,243,015,279,782,059,101,964,580,241,188,515,112,465,021,394,429
+
312,718,191,392,907,860,985,910,767,785,256,677,811,449,301,165,198,482,789
--
505,898,886,628,635,892,271,397,767,896,988,687,749,883,689,188,999,896,484,138,630,821,988,767,218
Bumped in memory of Zarfot

08-Jul-2011 17:34:05

Rho

Rho

Posts: 4,481 Adamant Posts by user Forum Profile RuneMetrics Profile
It has gone a little wrong so I will get us back on track,
119,447,720,249,892,581,203,851,665,820,676,436,622,934,188,700,177,088,360
+
193,270,471,243,015,279,782,059,101,964,580,241,188,515,112,465,021,394,429
=
312,718,191,392,907,860,985,910,767,785,256,677,811,449,301,165,198,482,789
------------------------------
193,270,471,243,015,279,782,059,101,964,580,241,188,515,112,465,021,394,429
+
312,718,191,392,907,860,985,910,767,785,256,677,811,449,301,165,198,482,789
=
505,988,662,735,923,140,767,969,869,749,836,918,999,964,413,630,219,877,218
-------------------------------
312,718,191,392,907,860,985,910,767,785,256,677,811,449,301,165,198,482,789
+
505,988,662,735,923,140,767,969,869,749,836,918,999,964,413,630,219,877,218
=
818,706,854,228,831,001,753,880,637,535,093,596,811,413,714,795,418,360,007
-------------------------------
This is the 274th Fibonacci number and is over 800 septendecillion

26-Jul-2011 00:12:50 - Last edited on 26-Jul-2011 00:14:44 by Rho

1Brett
May Member 2009

1Brett

Posts: 367 Silver Posts by user Forum Profile RuneMetrics Profile
505,988,662,735,923,140,767,969,869,749,836,918,999,964,413,630,219,877,218
+
818,706,854,228,831,001,753,880,637,535,093,596,811,413,714,795,418,360,007
=
1,324,895,516,964,754,142,521,850,537,284,930,515,811,379,128,425,638,237,225

08-Aug-2011 01:48:05

Enofel
Dec Member 2023

Enofel

Posts: 5,076 Rune Posts by user Forum Profile RuneMetrics Profile
818,706,854,228,831,001,753,880,637,535,093,596,811,413,714,795,418,360,007
1,324,895,516,964,754,142,521,850,537,284,930,515,811,379,128,425,638,237,225
__________________________________________________________________________________
2,143,602,371,193,585,144,275,731,174,820,034,112,622,790,843,221,056,597,232

09-Aug-2011 03:31:58

Mugger759

Mugger759

Posts: 5,705 Rune Posts by user Forum Profile RuneMetrics Profile
@Forum moderators, please do not hide this post. This is not a User script, nor a script created with malicious content. I have invested slightly over an hour of time to create these efficient calculators. :):):):) I've just written a JavaScript implementation to check the fibonnaci numbers. This script will be able to calculate an unlimited number of Fibonacci numbers, provided that it get enough time. Replace every % by %25 if you're going to use this script as a bookmarklet. I have optimized the script by using as less characters as possible, while avoiding memory leaks. Every browser will be able to calculate Fibonacci numbers using this piece of artwork:) javascript:/*@author Mugger759*/function f(x,y){x=(x+"").replace(/[^\d]/g,"").split("");y=(y+"").replace(/[^\d]/g,"").split("");while(x.length<y.length)x.unshift(0);while(x.length>y.length)y.unshift(0);x.unshift(0);y.unshift(0);for(var i=x.length-1,z=[],t=0,j=1;i>=0;i--,j=++j%3)z.unshift((j?"":",")+(t=x[i]*1+y[i]*1+(t>9))%10);return z.join("").replace(/^[,0]+/,"")}; function g(m){for(var i=0,a=1,b=0;i<m-1;i++)b=f(a,a=b);return b};var p=prompt("Calculate the nth fibonnaci number.","1");if(p)prompt("Fibonacci number #"+p+":",g(p));else void 0 If you want to create a list of these numbers (eg, the first 297 Fibonacci numbers): javascript:function f(x,y){x=(x+"").replace(/[^\d]/g,"").split("");y=(y+"").replace(/[^\d]/g,"").split("");while(x.length<y.length)x.unshift(0);while(x.length>y.length)y.unshift(0);x.unshift(0);y.unshift(0);for(var i=x.length-1,z=[],t=0,j=1;i>=0;i--,j=++j%3)z.unshift((j?"":",")+(t=x[i]*1+y[i]*1+(t>9))%10);return z.join("").replace(/^[,0]+/,"")}; var d="#1 0"; function g(m){for(var i=0,a=1,b=0;i<m-1;i++){b=f(a,a=b);d+="\n#"+(i+2)+" "+b};return b};g(297);d Next posts: Fibonacci numbers EDIT: Changed start count.

10-Aug-2011 15:16:50 - Last edited on 10-Aug-2011 15:40:35 by Mugger759

Mugger759

Mugger759

Posts: 5,705 Rune Posts by user Forum Profile RuneMetrics Profile
#1 0
#2 1
#3 1
#4 2
#5 3
#6 5
#7 8
#8 13
#9 21
#10 34
#11 55
#12 89
#13 144
#14 233
#15 377
#16 610
#17 987
#18 1,597
#19 2,584
#20 4,181
#21 6,765
#22 10,946
#23 17,711
#24 28,657
#25 46,368
#26 75,025
#27 121,393
#28 196,418
#29 317,811
#30 514,229
#31 832,040
#32 1,346,269
#33 2,178,309
#34 3,524,578
#35 5,702,887
#36 9,227,465
#37 14,930,352
#38 24,157,817
#39 39,088,169
#40 63,245,986
#41 102,334,155
#42 165,580,141
#43 267,914,296
#44 433,494,437
#45 701,408,733
#46 1,134,903,170
#47 1,836,311,903
#48 2,971,215,073
#49 4,807,526,976
#50 7,778,742,049
#51 12,586,269,025
#52 20,365,011,074
#53 32,951,280,099
#54 53,316,291,173
#55 86,267,571,272
#56 139,583,862,445
#57 225,851,433,717
#58 365,435,296,162
#59 591,286,729,879
#60 956,722,026,041
#61 1,548,008,755,920
#62 2,504,730,781,961
#63 4,052,739,537,881
#64 6,557,470,319,842
#65 10,610,209,857,723
#66 17,167,680,177,565
#67 27,777,890,035,288
#68 44,945,570,212,853
#69 72,723,460,248,141
#70 117,669,030,460,994
#71 190,392,490,709,135
#72 308,061,521,170,129
#73 498,454,011,879,264
#74 806,515,533,049,393
#75 1,304,969,544,928,657
#76 2,111,485,077,978,050
#77 3,416,454,622,906,707
#78 5,527,939,700,884,757
#79 8,944,394,323,791,464
#80 14,472,334,024,676,221
#81 23,416,728,348,467,685
#82 37,889,062,373,143,906
#83 61,305,790,721,611,591
#84 99,194,853,094,755,497
#85 160,500,643,816,367,088
#86 259,695,496,911,122,585
#87 420,196,140,727,489,673
#88 679,891,637,638,612,258
#89 1,100,087,778,366,101,931
#90 1,779,979,416,004,714,189
#91 2,880,067,194,370,816,120
#92 4,660,046,610,375,530,309
#93 7,540,113,804,746,346,429
#94 12,200,160,415,121,876,738
#95 19,740,274,219,868,223,167
#96 31,940,434,634,990,099,905
#97 51,680,708,854,858,323,072
#98 83,621,143,489,848,422,977
#99 135,301,852,344,706,746,049
#100 218,922,995,834,555,169,026
#101 354,224,848,179,261,915,075
#102 573,147,844,013,817,084,101
#103 927,372,692,193,078,999,176
#104 1,500,520,536,206,896,083,277
#105 2,427,893,228,399,975,082,453

10-Aug-2011 15:17:10 - Last edited on 10-Aug-2011 15:24:20 by Mugger759

Mugger759

Mugger759

Posts: 5,705 Rune Posts by user Forum Profile RuneMetrics Profile
#106 3,928,413,764,606,871,165,730
#107 6,356,306,993,006,846,248,183
#108 10,284,720,757,613,717,413,913
#109 16,641,027,750,620,563,662,096
#110 26,925,748,508,234,281,076,009
#111 43,566,776,258,854,844,738,105
#112 70,492,524,767,089,125,814,114
#113 114,059,301,025,943,970,552,219
#114 184,551,825,793,033,096,366,333
#115 298,611,126,818,977,066,918,552
#116 483,162,952,612,010,163,284,885
#117 781,774,079,430,987,230,203,437
#118 1,264,937,032,042,997,393,488,322
#119 2,046,711,111,473,984,623,691,759
#120 3,311,648,143,516,982,017,180,081
#121 5,358,359,254,990,966,640,871,840
#122 8,670,007,398,507,948,658,051,921
#123 14,028,366,653,498,915,298,923,761
#124 22,698,374,052,006,863,956,975,682
#125 36,726,740,705,505,779,255,899,443
#126 59,425,114,757,512,643,212,875,125
#127 96,151,855,463,018,422,468,774,568
#128 155,576,970,220,531,065,681,649,693
#129 251,728,825,683,549,488,150,424,261
#130 407,305,795,904,080,553,832,073,954
#131 659,034,621,587,630,041,982,498,215
#132 1,066,340,417,491,710,595,814,572,169
#133 1,725,375,039,079,340,637,797,070,384
#134 2,791,715,456,571,051,233,611,642,553
#135 4,517,090,495,650,391,871,408,712,937
#136 7,308,805,952,221,443,105,020,355,490
#137 11,825,896,447,871,834,976,429,068,427
#138 19,134,702,400,093,278,081,449,423,917
#139 30,960,598,847,965,113,057,878,492,344
#140 50,095,301,248,058,391,139,327,916,261
#141 81,055,900,096,023,504,197,206,408,605
#142 131,151,201,344,081,895,336,534,324,866
#143 212,207,101,440,105,399,533,740,733,471
#144 343,358,302,784,187,294,870,275,058,337
#145 555,565,404,224,292,694,404,015,791,808
#146 898,923,707,008,479,989,274,290,850,145
#147 1,454,489,111,232,772,683,678,306,641,953
#148 2,353,412,818,241,252,672,952,597,492,098
#149 3,807,901,929,474,025,356,630,904,134,051
#150 6,161,314,747,715,278,029,583,501,626,149
#151 9,969,216,677,189,303,386,214,405,760,200
#152 16,130,531,424,904,581,415,797,907,386,349
#153 26,099,748,102,093,884,802,012,313,146,549

10-Aug-2011 15:17:49 - Last edited on 10-Aug-2011 15:24:43 by Mugger759

Mugger759

Mugger759

Posts: 5,705 Rune Posts by user Forum Profile RuneMetrics Profile
#154 42,230,279,526,998,466,217,810,220,532,898
#155 68,330,027,629,092,351,019,822,533,679,447
#156 110,560,307,156,090,817,237,632,754,212,345
#157 178,890,334,785,183,168,257,455,287,891,792
#158 289,450,641,941,273,985,495,088,042,104,137
#159 468,340,976,726,457,153,752,543,329,995,929
#160 757,791,618,667,731,139,247,631,372,100,066
#161 1,226,132,595,394,188,293,000,174,702,095,995
#162 1,983,924,214,061,919,432,247,806,074,196,061
#163 3,210,056,809,456,107,725,247,980,776,292,056
#164 5,193,981,023,518,027,157,495,786,850,488,117
#165 8,404,037,832,974,134,882,743,767,626,780,173
#166 13,598,018,856,492,162,040,239,554,477,268,290
#167 22,002,056,689,466,296,922,983,322,104,048,463
#168 35,600,075,545,958,458,963,222,876,581,316,753
#169 57,602,132,235,424,755,886,206,198,685,365,216
#170 93,202,207,781,383,214,849,429,075,266,681,969
#171 150,804,340,016,807,970,735,635,273,952,047,185
#172 244,006,547,798,191,185,585,064,349,218,729,154
#173 394,810,887,814,999,156,320,699,623,170,776,339
#174 638,817,435,613,190,341,905,763,972,389,505,493
#175 1,033,628,323,428,189,498,226,463,595,560,281,832
#176 1,672,445,759,041,379,840,132,227,567,949,787,325
#177 2,706,074,082,469,569,338,358,691,163,510,069,157
#178 4,378,519,841,510,949,178,490,918,731,459,856,482
#179 7,084,593,923,980,518,516,849,609,894,969,925,639
#180 11,463,113,765,491,467,695,340,528,626,429,782,121
#181 18,547,707,689,471,986,212,190,138,521,399,707,760
#182 30,010,821,454,963,453,907,530,667,147,829,489,881
#183 48,558,529,144,435,440,119,720,805,669,229,197,641
#184 78,569,350,599,398,894,027,251,472,817,058,687,522
#185 127,127,879,743,834,334,146,972,278,486,287,885,163
#186 205,697,230,343,233,228,174,223,751,303,346,572,685
#187 332,825,110,087,067,562,321,196,029,789,634,457,848
#188 538,522,340,430,300,790,495,419,781,092,981,030,533
#189 871,347,450,517,368,352,816,615,810,882,615,488,381
#190 1,409,869,790,947,669,143,312,035,591,975,596,518,914

10-Aug-2011 15:18:10 - Last edited on 10-Aug-2011 15:25:01 by Mugger759

Quick find code: 55-56-974-60029865 Back to Top