Back to hub
FAQ

Sequence Generator FAQ

Find answers to common questions about generating number sequences, using formulas, and exporting results.

What is the difference between arithmetic and geometric sequences?

Arithmetic sequences add a constant difference between terms (e.g. 2, 5, 8, 11 with diff=3). Geometric sequences multiply by a constant ratio (e.g. 2, 6, 18, 54 with ratio=3).

How does the formula mode work?

Enter a JavaScript expression using the variable n (starting from 0). For example, '2 * n + 1' generates 1, 3, 5, 7 and 'Math.pow(2, n)' generates 1, 2, 4, 8. Only safe math functions and operators are allowed.

What is the maximum number of terms I can generate?

Up to 200 terms. The tool validates that values stay within safe numeric bounds and blocks non-finite or oversized results.

Can I export the sequence to Excel?

Yes. Use the CSV export button to download a .csv file. The first column is the index (1-based) and the second column is the term value. This file opens directly in Excel, Google Sheets, or any spreadsheet tool.

How does the chart work?

The chart is an inline SVG that plots each term's value against its index (position in the sequence). It updates instantly when you generate a new sequence. For large sequences (100+ terms), the chart shows the overall trend while keeping individual points visible.

Is my sequence data sent to a server?

No. All calculations run entirely in your browser using JavaScript. No data is sent to any server. This means results appear instantly with no network latency.

Related Pages